Skip to content

Instantly share code, notes, and snippets.

@krames
Created February 20, 2015 22:28
Show Gist options
  • Save krames/17d76b847b8c791759d7 to your computer and use it in GitHub Desktop.
Save krames/17d76b847b8c791759d7 to your computer and use it in GitHub Desktop.

docker-compose

I really struggled to get docker-compose installed on my machine. By default the mac does not include pip so I opted to install python using brew. I then tried to install docker-compose and had issues with an incompatible requests (See issue). After switching to a different version of requests, I ran into issues with openssl (See issue.

Ultimately I removed brew's version of python and did the following:

  1. sudo easy_install pip
  2. sudo pip install docker-compose==1.1.0-rc2
  3. sudo pip uninstall requests
  4. sudo pip install requests==2.4.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment