-
-
Save ssi-victoriano-eco/e4400bd397d93ed07a5f6ee67bddfdb3 to your computer and use it in GitHub Desktop.
Adjust Docker Machine Memory & CPU
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Adjust Docker Machine Memory+CPU | |
# http://stackoverflow.com/questions/32834082/how-to-increase-docker-machine-memory-mac | |
docker-machine stop | |
VBoxManage modifyvm default --cpus 2 | |
VBoxManage modifyvm default --memory 4096 | |
docker-machine start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
if
VBoxManage
is not in your ENV, specify the whole path in "Program Files"It will not reflect immediately if you print the config
docker-machine inspect
, but it will be shown when you do the below or modify theconfig.json
of the docker-machine itself