File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ install, and start **deis/builder**.
2222 its configuration (default: * /deis/builder* )
2323* ** ETCD_TTL** sets the time-to-live before etcd purges a configuration
2424 value, in seconds (default: * 10* )
25- * ** STORAGE_DRIVER** sets the Docker-in-Docker storage driver (default: btrfs)
2625* ** PORT** sets the TCP port on which the builder listens (default: * 2222* )
2726
2827## License
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ export ETCD_PORT=${ETCD_PORT:-4001}
1414export ETCD=" $HOST :$ETCD_PORT "
1515export ETCD_PATH=${ETCD_PATH:-/ deis/ builder}
1616export ETCD_TTL=${ETCD_TTL:- 10}
17- export STORAGE_DRIVER=${STORAGE_DRIVER:- btrfs}
1817
1918# wait for etcd to be available
2019until etcdctl --no-sync -C $ETCD ls > /dev/null 2>&1 ; do
@@ -51,7 +50,7 @@ CONFD_PID=$!
5150test -e /var/run/docker.sock && rm -f /var/run/docker.sock
5251
5352# spawn a docker daemon to run builds
54- docker -d --storage-driver= $STORAGE_DRIVER -- bip=172.19.42.1/16 --insecure-registry 10.0.0.0/8 --insecure-registry 172.16.0.0/12 --insecure-registry 192.168.0.0/16 --insecure-registry 100.64.0.0/10 &
53+ docker -d --bip=172.19.42.1/16 --insecure-registry 10.0.0.0/8 --insecure-registry 172.16.0.0/12 --insecure-registry 192.168.0.0/16 --insecure-registry 100.64.0.0/10 &
5554DOCKER_PID=$!
5655
5756# wait for docker to start
Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ func TestBuilder(t *testing.T) {
4949 "--rm" ,
5050 "-p" , port + ":22" ,
5151 "-e" , "PORT=22" ,
52- "-e" , "STORAGE_DRIVER=aufs" ,
5352 "-e" , "HOST=" + host ,
5453 "-e" , "ETCD_PORT=" + etcdPort ,
5554 "-e" , "EXTERNAL_PORT=" + port ,
You can’t perform that action at this time.
0 commit comments