4086a22f6e
Upstream-commit: 0b5e223b4e7d38a6511424d24c8cc12ec9c021de Component: engine
11 lines
229 B
Plaintext
11 lines
229 B
Plaintext
description "Run docker"
|
|
|
|
start on runlevel [2345]
|
|
stop on starting rc RUNLEVEL=[016]
|
|
respawn
|
|
|
|
script
|
|
test -f /etc/default/locale && . /etc/default/locale || true
|
|
LANG=$LANG LC_ALL=$LANG /usr/bin/docker -d
|
|
end script
|