90DaysOfDevOps/Days/Linux/VAGRANTFILE
AnvaySingh 9fe0a02845
Minor change in VAGRANTFILE for --vram
Value for --vram is assumed to be in mb already, so only value is required. [--vram <vramsize in MB>]
Followed the https://www.virtualbox.org/manual/ch08.html#vboxmanage-cmd-overview
2022-05-07 10:58:02 +05:30

9 lines
227 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