docker / machine

Machine management for a container-centric world
https://docs.docker.com/machine/
Apache License 2.0
6.63k stars 1.97k forks source link

Allow passing of VMWare Fusion specific configuration flags #2983

Open jezell opened 8 years ago

jezell commented 8 years ago

To optimize performance of our VMs, our Vagrant our setup would specify certain VMWare specific parameters for the vm such as:

    f.vmx["refvmx.minVmMemPct"] = "100"
f.vmx["MemTrimRate"] = "0"
f.vmx["sched.mem.pshare.enable"] = "FALSE"
f.vmx["prefvmx.useRecommendedLockedMemSize"] = "TRUE"
f.vmx["mainMem.partialLazySave"] = "FALSE"
f.vmx["mainMem.partialLazyRestore"] = "FALSE"
f.vmx["priority.grabbed"] = "high"
f.vmx["priority.ungrabbed"] = "normal"

Not seeing a way to do this with docker-machine, but it would be extremely useful.

nathanleclaire commented 8 years ago

cc @frapposelli