Upstart script to run container won't manage lifecycle
Asked Answered
T

1

2

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

Trimetallic answered 19/7, 2014 at 21:22 Comment(0)
P
3

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

Perilous answered 20/7, 2014 at 10:50 Comment(2)
That gets me really close, but still requires me to shutdown the named container before managing it via upstart.... I asked a followup question: #24872980Trimetallic
@MarshallAnschutz good question. I added my answer there. Basically it can be achieved by using the Docker Remote API.Perilous

© 2022 - 2024 — McMap. All rights reserved.