Upstart script to run container won't manage lifecycle

不问归期 提交于 2019-12-05 04:26:31

问题


I have an upstart script (say, /etc/init/dtest.conf)

start on runlevel [2345]
stop on runlevel [!2345]
respawn
script
  DID=$(docker.io run -d ubuntu /bin/bash -c "echo Starting;sleep 20;echo Stopping")
  docker.io attach $DID
end script

When issuing start dtest, the upstart logs show the proper cycle of "Starting ... Stopping" forever.

However, if I issue a stop dtest, then it appears to exit properly, but the container will run for the remainder of the sleep time (as evidenced by running docker.io ps every second).

Shouldn't there be an easy way to run a docker image in a container with upstart and have its lifecycle be managed there?

My ideal script would be something like this:

start on runlevel [2345]
stop on runlevel [!2345]
respawn
exec docker.io run -d ubuntu /bin/bash -c "echo Starting;sleep 20;echo Stopping"

Environment: This is on AWS, using Ubuntu 14.04 in a T2.micro, with apt-get install -y docker.io being the only thing installed


回答1:


You should create a named container by running the following command:

docker run --name dtest ubuntu /bin/bash -c "echo Starting;sleep 20;echo Stopping"

Then create the following upstart script (pay attention to the -a flag) which will manage the lifecycle of this container as you expect

start on runlevel [2345]
stop on runlevel [!2345]
respawn
script
  /usr/bin/docker start -a dtest
end script

I would also suggest to add the -r flag to the main docker daemon execution script, so that docker will not automatically restart your containers when the host is restarted (instead this will be done by the upstart script)

sudo sh -c "echo 'DOCKER_OPTS=\"-r=false\"' > /etc/default/docker"

The process of configuring a Docker containers to work with process managers like upstart is described in a great detail here



来源:https://stackoverflow.com/questions/24845080/upstart-script-to-run-container-wont-manage-lifecycle

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!