Skip to content

Instantly share code, notes, and snippets.

@suhaboncukcu
Created June 30, 2018 12:46
Show Gist options
  • Save suhaboncukcu/51f122e3614754598533c9b2f369d2d9 to your computer and use it in GitHub Desktop.
Save suhaboncukcu/51f122e3614754598533c9b2f369d2d9 to your computer and use it in GitHub Desktop.
docker-compose installation for mac
brew install jq;
LATEST_VERSION=$(curl -s https://api.github.com/repos/docker/compose/releases/latest | jq -r '.tag_name');
curl -L "https://github.com/docker/compose/releases/download/$LATEST_VERSION/docker-compose-$(uname -s)-$(uname -m)" > /usr/local/bin/docker-compose;
chmod +x /usr/local/bin/docker-compose;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment