mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
15 lines
270 B
Text
15 lines
270 B
Text
description "Docker daemon"
|
|
|
|
start on filesystem and started lxc-net
|
|
stop on runlevel [!2345]
|
|
|
|
respawn
|
|
|
|
script
|
|
DOCKER=/usr/bin/$UPSTART_JOB
|
|
DOCKER_OPTS=
|
|
if [ -f /etc/default/$UPSTART_JOB ]; then
|
|
. /etc/default/$UPSTART_JOB
|
|
fi
|
|
"$DOCKER" -d $DOCKER_OPTS
|
|
end script
|