Merge pull request #6784 from dokku/josegonzalez-patch-1

Remove --restart docker arguments when not running deploy-phase containers
This commit is contained in:
Jose Diaz-Gonzalez
2024-08-26 00:41:56 -04:00
committed by GitHub

View File

@@ -37,6 +37,14 @@ trigger-docker-options-docker-args() {
\#*)
continue
;;
--restart*)
if [[ "$PHASE" == "deploy" ]]; then
local output="$output $line"
fi
continue
;;
*)
case "$IMAGE_SOURCE_TYPE" in
dockerfile | nixpacks)