ssm-services/init.d/docker

16 lines
288 B
Plaintext
Raw Normal View History

2014-02-22 14:32:37 +00:00
#!/usr/bin/env watchman
docker_dir='/home/docker'
#service_respawn='true'
2015-06-18 09:38:49 +00:00
service_command='/usr/bin/docker'
2015-09-04 13:47:37 +00:00
service_args=( -g "$docker_dir" -d )
2014-02-22 14:32:37 +00:00
update() {
watchman.stop && {
wget "https://get.docker.io/builds/Linux/x86_64/docker-latest" -O "$service_command"
}
watchman.start
}