providers/docker: default host VM doesn't sync folder
This commit is contained in:
parent
152e3ba611
commit
e50eb6c7a9
|
@ -2,7 +2,12 @@ Vagrant.configure("2") do |config|
|
||||||
config.vm.box = "mitchellh/boot2docker"
|
config.vm.box = "mitchellh/boot2docker"
|
||||||
|
|
||||||
config.vm.provider "virtualbox" do |v|
|
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.check_guest_additions = false
|
||||||
v.functional_vboxsf = false
|
v.functional_vboxsf = false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Don't sync this directory
|
||||||
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue