docker service

This commit is contained in:
Jack L. Frost 2014-02-22 18:32:37 +04:00
parent 6c075e4169
commit 1c3cc01b36
1 changed files with 14 additions and 0 deletions

14
init.d/docker Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env watchman
docker_dir='/home/docker'
service_command='/usr/local/sbin/docker'
service_args="-g ${docker_dir} -d"
update() {
watchman.stop && {
wget "https://get.docker.io/builds/Linux/x86_64/docker-latest" -O "$service_command"
}
watchman.start
}