Browse Source

Reduce VM resources (#13)

no-destroy-on-error
Luke Childs 4 years ago
committed by GitHub
parent
commit
11f4c4c3aa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      Vagrantfile

6
Vagrantfile

@ -32,10 +32,10 @@ Vagrant.configure(2) do |config|
config.vm.network "public_network", bridge: "en0: Wi-Fi (AirPort)"
config.vm.synced_folder ".", "/vagrant", type: "virtualbox"
# Configure similar specs to a Raspberry Pi
# Configure VM resources
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--cpus", "4"]
vb.customize ["modifyvm", :id, "--memory", "4096"]
vb.customize ["modifyvm", :id, "--cpus", "2"]
vb.customize ["modifyvm", :id, "--memory", "2048"]
end
# Update package lists

Loading…
Cancel
Save