Browse Source

Configure similar specs to a Raspberry Pi

docker
Luke Childs 5 years ago
parent
commit
c861835f7e
  1. 6
      Vagrantfile

6
Vagrantfile

@ -1,4 +1,10 @@
Vagrant.configure(2) do |config|
config.vm.box = "debian/buster64"
config.vm.hostname = "umbrel"
# Configure similar specs to a Raspberry Pi
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--memory", "4096"]
vb.customize ["modifyvm", :id, "--cpus", "2"]
end
end

Loading…
Cancel
Save