Tengo un contenedor acoplable llamado "webby" que estoy intentando iniciar al reiniciar. Mi sistema host es: Linux docker01 3.13.0-52-generic #86-Ubuntu SMP lunes 4 de mayo 04:32:59 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
Agregué lo siguiente a /etc/default/docker:
DOCKER_OPTS="-r=true"
Me aseguré de que mi contenedor estuviera iniciado antes de reiniciar. Sin embargo, después de reiniciar, el contenedor no se inició.
Luego intenté crear un script de inicio en /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
Sin embargo, después de un reinicio, el contenedor tampoco se inicia. ¿Alguna idea de lo que estoy haciendo mal?
Respuesta1
Nunca pude hacer funcionar el DOCKER_OPTS. Sin embargo, si cambié
start on filesystem and started docker.io
a
start on filesystem and started docker
Hay mucha documentación antigua de Docker por ahí.