Browse Source

Use overlay driver in tests

Signed-off-by: Aanand Prasad <[email protected]>
Aanand Prasad 10 years ago
parent
commit
7f90e9592a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      script/wrapdocker

+ 1 - 1
script/wrapdocker

@@ -7,7 +7,7 @@ fi
 # If a pidfile is still around (for example after a container restart),
 # delete it so that docker can start.
 rm -rf /var/run/docker.pid
-docker -d $DOCKER_DAEMON_ARGS &>/var/log/docker.log &
+docker -d --storage-driver="overlay" &>/var/log/docker.log &
 docker_pid=$!
 
 >&2 echo "Waiting for Docker to start..."