blob: 0199623116099751fd0e61f6b009e2ecf4b6af70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#!/bin/sh
# Short-Description: Create lightweight, portable, self-sufficient containers.
# Description:
# Docker is an open-source project to easily create lightweight, portable,
# self-sufficient containers from any application. The same container that a
# developer builds and tests on a laptop can run at scale, in production, on
# VMs, bare metal, OpenStack clusters, public clouds and more.
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin
BASE=docker
UNSHARE=/usr/bin/unshare
DOCKER=/usr/bin/$BASE
DOCKER_PIDFILE=/var/run/$BASE.pid
DOCKER_LOG=/var/log/docker.log
DOCKER_OPTS=
if [ -f /etc/default/$BASE ]; then
. /etc/default/$BASE
fi
# Check docker is present
if [ ! -x $DOCKER ]; then
echo "$DOCKER not present or not executable"
exit 1
fi
docker_start() {
echo "starting $BASE ..."
if [ -x ${DOCKER} ]; then
# If there is an old PID file (no docker running), clean it up:
if [ -r ${DOCKER_PIDFILE} ]; then
if ! ps axc | grep docker 1> /dev/null 2> /dev/null ; then
echo "Cleaning up old ${DOCKER_PIDFILE}."
rm -f ${DOCKER_PIDFILE}
fi
fi
nohup "${UNSHARE}" -m -- ${DOCKER} -d -p ${DOCKER_PIDFILE} ${DOCKER_OPTS} >> ${DOCKER_LOG} 2>&1 &
fi
}
# Stop docker:
docker_stop() {
echo "stopping $BASE ..."
# If there is no PID file, ignore this request...
if [ -r ${DOCKER_PIDFILE} ]; then
kill $(cat ${DOCKER_PIDFILE})
fi
}
# Restart docker:
docker_restart() {
docker_stop
docker_start
}
case "$1" in
'start')
docker_start
;;
'stop')
docker_stop
;;
'restart')
docker_restart
;;
'status')
if [ -f ${DOCKER_PIDFILE} ] && ps -o cmd $(cat ${DOCKER_PIDFILE}) | grep -q $BASE ; then
echo "status of $BASE: running"
else
echo "status of $BASE: stopped"
fi
;;
*)
echo "usage $0 start|stop|restart|status"
esac
exit 0
|