Eu nunca poderia ir a DOCKER_OPTS para o trabalho. No entanto, se eu mudei
start on filesystem and started docker.io
para
start on filesystem and started docker
Muitas documentações antigas do docker por aí.
Portanto, tenho um contêiner docker chamado "webby" que estou tentando iniciar na reinicialização. Meu sistema host é: Linux docker01 3.13.0-52-genérico # 86-Ubuntu SMP Seg 4 de maio 04:32:59 UTC 2015 x86_64 x86_64 x86_64 GNU / Linux
Adicionei o seguinte ao / etc / default / docker:
DOCKER_OPTS="-r=true"
Verifiquei se meu contêiner foi iniciado antes de reinicializar. No entanto, após a reinicialização, o contêiner não foi iniciado.
Eu então tentei criar um script de inicialização em /etc/init/scott.conf
description "Docker startup script for webby"
author "me"
start on filesystem and started docker.io
stop on runlevel [!2345]
respawn
script
/usr/bin/docker start -a webby
end script
No entanto, após uma reinicialização que não inicia o contêiner, também. Alguma idéia do que estou fazendo errado?
Eu nunca poderia ir a DOCKER_OPTS para o trabalho. No entanto, se eu mudei
start on filesystem and started docker.io
para
start on filesystem and started docker
Muitas documentações antigas do docker por aí.