Last active
July 14, 2019 14:12
-
-
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/
This file contains hidden or 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
# 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