Upstart script to run container won't manage l

2020-06-28 01:33发布

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条回答
The star\"
2楼-- · 2020-06-28 01:46

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

查看更多
登录 后发表回答