We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01f2225 commit 426fbceCopy full SHA for 426fbce
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
-rm -f /var/run/docker.sock
+test -e /var/run/run/docker.sock && rm -f /var/run/docker.sock
36
37
# spawn a docker daemon to run builds
38
docker -d &
@@ -68,7 +68,7 @@ if [[ ! -z $PUBLISH ]]; then
68
69
# configure service discovery
70
HOST=${HOST:-localhost}
71
- PORT=${PORT:-22}
+ PORT=${PORT:-2222}
72
PROTO=${PROTO:-tcp}
73
74
# wait for the service to become available on PUBLISH port
0 commit comments