Skip to content

Instantly share code, notes, and snippets.

@katopz
Last active July 14, 2019 14:12
Show Gist options
  • Save katopz/b42046e3cb7ac2a1023ff8e8e5e3514a to your computer and use it in GitHub Desktop.
Save katopz/b42046e3cb7ac2a1023ff8e8e5e3514a to your computer and use it in GitHub Desktop.
Will install Docker Compose 1.7.1 Ref https://docs.docker.com/compose/install/
# Will install Docker Compose 1.7.1
# Ref https://docs.docker.com/compose/install/
# You can get version number from https://github.com/docker/compose/releases
curl -L https://github.com/docker/compose/releases/download/1.7.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
# Apply executable permissions to the binary:
chmod +x /usr/local/bin/docker-compose
# Test the installation.
docker-compose --version
# Expected docker-compose version 1.7.1, build 0a9ab35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment