Skip to content

Commit a0cf80c

Browse files
committed
fix(docker): use btrfs inside builder
We have seen mixed usage of aufs and btrfs cause problems before. On CoreOS, btrfs rules the day, so use that.
1 parent e6e15d1 commit a0cf80c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builder/bin/boot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ CONFD_PID=$!
4343
test -e /var/run/docker.sock && rm -f /var/run/docker.sock
4444

4545
# spawn a docker daemon to run builds
46-
docker -d --bip=172.19.42.1/16 &
46+
docker -d --storage-driver=btrfs --bip=172.19.42.1/16 &
4747
DOCKER_PID=$!
4848

4949
# wait for docker to start

0 commit comments

Comments
 (0)