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 |