Skip to content

Instantly share code, notes, and snippets.

@vikikamath
Created June 24, 2019 01:31
Show Gist options
  • Save vikikamath/3f5e8feab9364153055671138e672910 to your computer and use it in GitHub Desktop.
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.
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