From 6df673372f3622e2599a486f84c30272f11105cf Mon Sep 17 00:00:00 2001 From: Andrea Luzzardi Date: Mon, 4 May 2015 17:29:00 -0700 Subject: [PATCH] integration: Use aufs by default. The problem has been fixed in the dind images. Signed-off-by: Andrea Luzzardi --- test/integration/helpers.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/helpers.bash b/test/integration/helpers.bash index 32d133d93b..63901ddce3 100644 --- a/test/integration/helpers.bash +++ b/test/integration/helpers.bash @@ -17,7 +17,7 @@ SWARM_HOST=127.0.0.1:$(( ( RANDOM % 1000 ) + 6000 )) BASE_PORT=$(( ( RANDOM % 1000 ) + 5000 )) # 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} # Join an array with a given separator.