Created
December 1, 2015 07:24
-
-
Save thuongdinh-agilityio/123673148c13fa56a3e7 to your computer and use it in GitHub Desktop.
How to install docker on macosx
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
# install brikis98/docker-osx-dev | |
curl -o /usr/local/bin/docker-osx-dev https://raw.githubusercontent.com/brikis98/docker-osx-dev/master/src/docker-osx-dev | |
chmod +x /usr/local/bin/docker-osx-dev | |
docker-osx-dev install | |
# go to working folder where contains docker-compose.xml | |
docker-osx-dev | |
# install virtualenv | |
sudo pip install virtualenv | |
virtualenv ~/venvdocker | |
source venvdocker/bin/activate | |
# install docker-compose inside virtualenv | |
pip install docker-compose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment