Make storage driver configurable in CI

Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin 2015-10-21 15:26:44 -04:00
parent c34a9f165d
commit 1bc3c97f2a
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