90DaysOfDevOps/2022/Days/Linux/VAGRANTFILE
2022-11-18 14:43:39 +00:00

9 lines
219 B
Plaintext

Vagrant.configure("2") do |config|
config.vm.box = "chenhan/ubuntu-desktop-20.04"
config.vm.provider :virtualbox do |v|
v.memory = 8096
v.cpus = 4
v.customize ["modifyvm", :id, "--vram", "128"]
end
end