Hi @craigson , the restart: no
will not instantiate the container in “stopped”. That field just means the container won’t be restart
ed in the case that its PID 1 process exits. So it will always start. You can also probably use restart: on-failure
which would only restart the container if your process exited for some failed reason, but if it was exit 0
then it would just stop.