ae1dbfa7df
Upstream-commit: 43875a73a0c2ee51f8bcd36634bbf64d836df6f8 Component: engine
13 lines
302 B
Plaintext
13 lines
302 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/dockerd
|
|
end script
|