You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: commands/run.sh
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -426,9 +426,9 @@ fi
426
426
427
427
ensure_stopped() {
428
428
log 143
429
-
echo'+++ :warning: Signal received, stopping container gracefully'
430
-
#docker stop "${container_name}" || true
431
-
compose_cleanup ${run_service}
429
+
echo'+++ :warning: Signal received, stopping container'
430
+
docker stop "${container_name}"||true
431
+
#compose_cleanup ${run_service} # This works but causes the docker process time to restart before the container dies. This must be a docker setting somewhere causing the restart, but I can't find it
432
432
echo'~~~ Last log lines that may be missing above (if container was not already removed)'
0 commit comments