From fac9bb8cf202a1ff6f6030445c29fcf74df13821 Mon Sep 17 00:00:00 2001 From: Amin Vakil Date: Mon, 21 Mar 2022 22:11:33 +0330 Subject: [PATCH] Add --no-recreate to dc up in wrap-up.sh Temporary fix for #1294 --- install/wrap-up.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/wrap-up.sh b/install/wrap-up.sh index 91638cad95..7110ba05bb 100644 --- a/install/wrap-up.sh +++ b/install/wrap-up.sh @@ -2,7 +2,7 @@ if [[ "$MINIMIZE_DOWNTIME" ]]; then echo "${_group}Waiting for Sentry to start ..." # Start the whole setup, except nginx and relay. - $dc up -d --remove-orphans $($dc config --services | grep -v -E '^(nginx|relay)$') + $dc up --no-recreate -d --remove-orphans $($dc config --services | grep -v -E '^(nginx|relay)$') $dc restart relay $dc exec -T nginx nginx -s reload