Use two CPUs for the VirtualBox Vagrant box

This commit is contained in:
Greg Karékinian 2017-05-08 16:53:03 +02:00
parent 4fdf64dfbd
commit 5285f86043

1
Vagrantfile vendored
View File

@ -18,6 +18,7 @@ Vagrant.configure(2) do |config|
config.vm.provider :virtualbox do |vb|
# Customize the amount of memory on the VM:
vb.memory = "1024"
vb.cpus = 2
end
config.vm.provider :docker do |d, override|