-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a8fed33
commit 9387478
Showing
4 changed files
with
178 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
description "Docker daemon for team #{{.Number}}" | ||
|
||
start on (local-filesystems and net-device-up IFACE!=lo) | ||
stop on runlevel [!2345] | ||
limit nofile 524288 1048576 | ||
limit nproc 524288 1048576 | ||
|
||
respawn | ||
|
||
kill timeout 20 | ||
|
||
pre-start script | ||
# see also https://github.com/tianon/cgroupfs-mount/blob/master/cgroupfs-mount | ||
if grep -v '^#' /etc/fstab | grep -q cgroup \ | ||
|| [ ! -e /proc/cgroups ] \ | ||
|| [ ! -d /sys/fs/cgroup ]; then | ||
exit 0 | ||
fi | ||
if ! mountpoint -q /sys/fs/cgroup; then | ||
mount -t tmpfs -o uid=0,gid=0,mode=0755 cgroup /sys/fs/cgroup | ||
fi | ||
( | ||
cd /sys/fs/cgroup | ||
for sys in $(awk '!/^#/ { if ($4 == 1) print $1 }' /proc/cgroups); do | ||
mkdir -p $sys | ||
if ! mountpoint -q $sys; then | ||
if ! mount -n -t cgroup -o $sys cgroup $sys; then | ||
rmdir $sys || true | ||
fi | ||
fi | ||
done | ||
) | ||
end script | ||
|
||
script | ||
# modify these in /etc/default/$UPSTART_JOB (/etc/default/docker) | ||
DOCKER=/usr/bin/docker | ||
DOCKER_OPTS= | ||
. /etc/default/$UPSTART_JOB | ||
exec "$DOCKER" daemon $DOCKER_OPTS | ||
end script | ||
|
||
# Don't emit "started" event until docker.sock is ready. | ||
# See https://github.com/docker/docker/issues/6647 | ||
post-start script | ||
DOCKER_OPTS= | ||
if [ -f /etc/default/$UPSTART_JOB ]; then | ||
. /etc/default/$UPSTART_JOB | ||
fi | ||
|
||
while ! [ -e /var/run/{{.Name}}.sock ]; do | ||
initctl status $UPSTART_JOB | grep -qE "(stop|respawn)/" && exit 1 | ||
echo "Waiting for /var/run/{{.Name}}.sock" | ||
sleep 0.1 | ||
done | ||
echo "/var/run/{{.Name}} is up" | ||
|
||
end script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters