Merge pull request #3051 from berendt/vagrantfile_virtualbox_resources

[Vagrantfile] set resources for the provider 'virtualbox'
This commit is contained in:
Clint 2015-10-16 13:46:25 -05:00
commit 239823f055
1 changed files with 5 additions and 0 deletions

5
Vagrantfile vendored
View File

@ -53,4 +53,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
v.vmx["numvcpus"] = "2"
end
end
config.vm.provider "virtualbox" do |v|
v.memory = 4096
v.cpus = 2
end
end