fix: use docker compose v2 syntax in update.sh; only stop/start the containers rather than recreating them

This commit is contained in:
Dragory 2022-08-07 13:52:41 +03:00
parent 561f91949d
commit 1308054d69
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -2,8 +2,8 @@
echo Updating Zeppelin...
docker-compose -f docker-compose.production.yml down
docker compose -f docker-compose.production.yml stop
git pull
docker-compose -f docker-compose.production.yml -d up
docker compose -f docker-compose.production.yml start
echo Update finished!