forked from coppit/docker-no-ip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boot.sh
56 lines (40 loc) · 1.1 KB
/
boot.sh
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
#!/bin/sh
# Based on https://github.com/sanjeevan/baseimage
shutdown() {
echo
echo "Shutting down container..."
# first shutdown any service started by runit
for _srv in $(ls -1 /etc/service); do
sv force-stop $_srv
done
# shutdown runsvdir command
kill -HUP $RUNSVDIR
wait $RUNSVDIR
# give processes time to stop
sleep 0.5
# kill any other processes still running in the container
for _pid in $(ps -eo pid | grep -v PID | tr -d ' ' | grep -v '^1$' | head -n -6); do
timeout -t 5 /bin/sh -c "kill $_pid && wait $_pid || kill -9 $_pid"
done
exit
}
# catch shutdown signals
trap shutdown SIGTERM SIGHUP SIGQUIT SIGINT
# store environment variables
export > /etc/envvars
PATH=/bin:/sbin:/usr/bin
# run all scripts in the run_once folder
if ! /bin/run-parts /etc/run_once
then
echo "Run-once scripts failed. Stopping container"
shutdown
fi
exec env - PATH=$PATH runsvdir -P /etc/service &
RUNSVDIR=$!
echo "Started runsvdir, PID is $RUNSVDIR. Waiting for processes to start...."
sleep 5
for _srv in $(ls -1 /etc/service); do
sv status $_srv
done
wait $RUNSVDIR
shutdown