Files
vagrant/minimalBox/Vagrantfile.arm
2026-01-23 10:13:30 +01:00

10 lines
224 B
Plaintext

Vagrant.configure("2") do |config|
config.vm.box = "ubuntu-arm64-local"
# UTM provider configuration
config.vm.provider "utm" do |utm|
utm.memory = 2048 # 2GB RAM
utm.cpus = 2 # 2 CPU cores
end
end