mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03: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
|