We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d791866 commit 93e5797Copy full SHA for 93e5797
1 file changed
builder/bin/boot
@@ -14,6 +14,7 @@ export ETCD_PORT=${ETCD_PORT:-4001}
14
export ETCD="$HOST:$ETCD_PORT"
15
export ETCD_PATH=${ETCD_PATH:-/deis/builder}
16
export ETCD_TTL=${ETCD_TTL:-10}
17
+export STORAGE_DRIVER=${STORAGE_DRIVER:-btrfs}
18
19
# wait for etcd to be available
20
until etcdctl --no-sync -C $ETCD ls >/dev/null; do
@@ -44,7 +45,7 @@ CONFD_PID=$!
44
45
test -e /var/run/docker.sock && rm -f /var/run/docker.sock
46
47
# spawn a docker daemon to run builds
-docker -d --storage-driver=btrfs --bip=172.19.42.1/16 &
48
+docker -d --storage-driver=$STORAGE_DRIVER --bip=172.19.42.1/16 &
49
DOCKER_PID=$!
50
51
# wait for docker to start
0 commit comments