90DaysOfDevOps/2022/tr/Days/Linux/VAGRANTFILE
2023-06-07 14:18:28 +03: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