Add support for vmware_fusion

This commit is contained in:
Jose Diaz-Gonzalez
2015-10-25 20:09:37 -04:00
parent a11b46058e
commit b23e5d1cbb

4
Vagrantfile vendored
View File

@@ -27,6 +27,10 @@ Vagrant::configure("2") do |config|
vb.customize ["modifyvm", :id, "--memory", BOX_MEMORY]
end
config.vm.provider :vmware_fusion do |v, override|
v.vmx["memsize"] = BOX_MEMORY
end
config.vm.define "empty", autostart: false
config.vm.define "dokku", primary: true do |vm|