fa69063302
Upstream-commit: d479efc01ead3da7b57c85a493f957e46c5fa0d1 Component: engine
13 lines
304 B
Plaintext
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
|