Merge pull request #712 from aluzzardi/integration-aufs

integration: Use aufs by default.
This commit is contained in:
Alexandre Beslic 2015-05-04 17:39:01 -07:00
commit 3338a12295
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ SWARM_HOST=127.0.0.1:$(( ( RANDOM % 1000 ) + 6000 ))
BASE_PORT=$(( ( RANDOM % 1000 ) + 5000 )) BASE_PORT=$(( ( RANDOM % 1000 ) + 5000 ))
# Drivers to use for Docker engines the tests are going to create. # Drivers to use for Docker engines the tests are going to create.
STORAGE_DRIVER=${STORAGE_DRIVER:-vfs} STORAGE_DRIVER=${STORAGE_DRIVER:-aufs}
EXEC_DRIVER=${EXEC_DRIVER:-native} EXEC_DRIVER=${EXEC_DRIVER:-native}
# Join an array with a given separator. # Join an array with a given separator.