mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-24 01:36:23 +07:00
9fe0a02845
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
9 lines
227 B
Plaintext
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
|