Ensure network exists in update script

This commit is contained in:
Jean Froment 2020-09-11 12:12:56 +02:00
parent f24afe6a1d
commit 28e2932d16
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@
# Create/update http_auth file according to values in .env file # Create/update http_auth file according to values in .env file
source .env source .env
echo "${HTTP_USER}:${HTTP_PASSWORD}" > http_auth echo "${HTTP_USER}:${HTTP_PASSWORD}" > http_auth
docker network create traefik-network || true
echo "[$0] ***** Pulling all images... *****" echo "[$0] ***** Pulling all images... *****"
docker-compose pull docker-compose pull