Files
docker-cli/components/engine/puppet/modules/docker/templates/dockerd.conf
Ken Cochrane fa69063302 updated Vagrant to support new single binary, and exposing the vagrant shared folder, and setting some ENV variables
Upstream-commit: d479efc01ead3da7b57c85a493f957e46c5fa0d1
Component: engine
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