Merge pull request #5302 from cubetto/fix-docker-no-space-to-build

providers/docker: build docker image from /var/lib/docker
This commit is contained in:
Mitchell Hashimoto 2015-02-24 09:47:08 -08:00
commit 104f2106ce
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ module VagrantPlugins
# We're on a host VM, so we need to move our build dir to
# that machine. We do this by putting the synced folder on
# ourself and letting HostMachineSyncFolders handle it.
new_build_dir = "/mnt/docker_build_#{Digest::MD5.hexdigest(build_dir)}"
new_build_dir = "/var/lib/docker/docker_build_#{Digest::MD5.hexdigest(build_dir)}"
options = {
docker__ignore: true,
docker__exact: true,