mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-07 14:00:34 +07:00
9 lines
219 B
Plaintext
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
|