Skip to content

Instantly share code, notes, and snippets.

@Faqahat
Forked from katopz/install-docker-compose.sh
Created July 14, 2019 14:12
Show Gist options
  • Save Faqahat/967f290b5ebceff1b30d8c659bc0872b to your computer and use it in GitHub Desktop.
Save Faqahat/967f290b5ebceff1b30d8c659bc0872b 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