Created
June 24, 2019 01:31
-
-
Save vikikamath/3f5e8feab9364153055671138e672910 to your computer and use it in GitHub Desktop.
Install docker-toolbox on older mac books that do not have hardware support for virtualization.
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
brew cask | |
brew cask install docker-toolbox | |
docker-machine create --driver "virtualbox" myBoxName | |
docker-machine start myBoxName | |
# copy to .bash_profile or .zshrc to be executed everytime | |
eval "$(docker-machine env myBoxName)" | |
# Ref: https://stackoverflow.com/a/32770439/405117 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment