2

According to this documentation, I should be able to add -r=false - to the docker daemon - however adding this to the DOCKER_OPTS seems to have no effect.

Rebooting causes it to restart containers that I want to run under supervision.

On ubuntu, this is in /etc/init.d/docker:

DOCKER=/usr/bin/docker
DOCKER_PIDFILE=/var/run/docker.pid
DOCKER_OPTS="-r=false"
4

1 回答 1

7

在 Ubuntu 上 - 您需要使用 service 命令,而不是 init.d 脚本。

service docker restart

重新启动。

配置在:

/etc/init/docker.conf

您可以在 -d 参数之后添加 -r=false ,它可以工作。忽略 ubuntu 上的 /etc/init.d/docker 脚本。

于 2013-11-10T05:11:38.223 回答