simple buntu vagrant

This commit is contained in:
jnielsen-monster
2026-04-28 13:56:24 +02:00
parent 207cb14e4c
commit 9833c94431

9
simpleBuntu/Vagrantfile vendored Normal file
View File

@@ -0,0 +1,9 @@
Vagrant.configure("2") do |config|
config.vm.box = "utm/ubuntu-24.04"
config.vm.hostname = "lake-lab01"
config.vm.provider :utm do |u|
u.name = "lake lab01"
u.cpus = 2
u.memory = 2048
end
end