website/docs: update vmx wordings
This commit is contained in:
parent
be57271b23
commit
933fd8b397
|
@ -78,4 +78,13 @@ that Vagrant has set up itself.
|
|||
VMX is an undocumented format and there is no official reference for
|
||||
the available keys and values. This customization option is exposed for
|
||||
people who have knowledge of exactly what they want.
|
||||
That said, the most awaited keys are "memsize" and "numvcpus".
|
||||
|
||||
The most common keys people look for are setting memory and CPUs.
|
||||
The example below sets both:
|
||||
|
||||
```ruby
|
||||
config.vm.provider "vmware_fusion" do |v|
|
||||
v.vmx["memsize"] = "1024"
|
||||
v.vmx["numvcpus"] = "2"
|
||||
end
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue