Compare commits

...

2 Commits

Author SHA1 Message Date
f68595526e Merge pull request 'simple buntu example' (#1) from feature/simpleBuntu into main
Reviewed-on: #1
2026-04-28 13:57:15 +02:00
jnielsen-monster
9833c94431 simple buntu vagrant 2026-04-28 13:56:24 +02:00

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