mirror of
https://github.com/docker/docs.git
synced 2026-03-31 08:18:55 +07:00
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
|