We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e07b18d commit ba19ac2Copy full SHA for ba19ac2
1 file changed
builder/bin/boot
@@ -32,7 +32,7 @@ until confd -onetime -node $ETCD -config-file /app/confd.toml; do
32
done
33
34
# remove any pre-existing docker.sock
35
-test -e /var/run/run/docker.sock && rm -f /var/run/docker.sock
+test -e /var/run/docker.sock && rm -f /var/run/docker.sock
36
37
# spawn a docker daemon to run builds
38
docker -d &
@@ -53,7 +53,6 @@ SSHD_PID=$!
53
54
# smart shutdown on SIGINT and SIGTERM
55
function on_exit() {
56
- rm -f /var/run/docker.pid
57
kill -TERM $DOCKER_PID $SSHD_PID
58
wait $DOCKER_PID $SSHD_PID 2>/dev/null
59
}
0 commit comments