From 1308054d6903b433dc4d4cbcd1d49d28e10099c9 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sun, 7 Aug 2022 13:52:41 +0300 Subject: [PATCH] fix: use docker compose v2 syntax in update.sh; only stop/start the containers rather than recreating them --- update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.sh b/update.sh index 8a32cf94..870e2e2e 100755 --- a/update.sh +++ b/update.sh @@ -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!