providers/docker: default host VM doesn't sync folder

This commit is contained in:
Mitchell Hashimoto 2014-04-18 17:11:58 -07:00
parent 152e3ba611
commit e50eb6c7a9
1 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,12 @@ Vagrant.configure("2") do |config|
config.vm.box = "mitchellh/boot2docker"
config.vm.provider "virtualbox" do |v|
# On VirtualBox, we don't have guest additions or a functional vboxsf
# in TinyCore Linux, so tell Vagrant that so it can be smarter.
v.check_guest_additions = false
v.functional_vboxsf = false
v.functional_vboxsf = false
end
# Don't sync this directory
config.vm.synced_folder ".", "/vagrant", disabled: true
end