You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
305 B

5 years ago
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
5 years ago
end