Selectively running containers on a device

Hi @craigson , the restart: no will not instantiate the container in “stopped”. That field just means the container won’t be restarted 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.