Files
cli/components/engine/puppet/modules/docker/templates/dockerd.conf
T
2013-03-13 13:30:13 -07:00

13 lines
304 B
Plaintext

description "Run dockerd"
stop on runlevel [!2345]
start on runlevel [3]
# if you want it to automatically restart if it crashes, leave the next line in
respawn
script
test -f /etc/default/locale && . /etc/default/locale || true
LANG=$LANG LC_ALL=$LANG /usr/local/bin/docker -d
end script