Merge pull request #2237 from dnephin/env_ci_storage_graph

Make storage driver configurable in CI
This commit is contained in:
Daniel Nephin 2015-10-21 16:29:40 -04:00
commit cf40a38820
1 changed files with 3 additions and 1 deletions

View File

@ -11,7 +11,9 @@ set -ex
docker version
export DOCKER_VERSIONS=all
export DOCKER_DAEMON_ARGS="--storage-driver=overlay"
STORAGE_DRIVER=${STORAGE_DRIVER:-overlay}
export DOCKER_DAEMON_ARGS="--storage-driver=$STORAGE_DRIVER"
GIT_VOLUME="--volumes-from=$(hostname)"
. script/test-versions