Last active
July 27, 2016 06:52
-
-
Save royingantaginting/57caf1542ab16d660c2a to your computer and use it in GitHub Desktop.
Oneliner script to install docker compose
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
# Make sure your docker engine version is at least version 1.7.1 for docker-compose version 1.5.2 | |
# Available docker-compose can be seen at https://github.com/docker/compose/releases | |
# Change VERSION variable below if you need other version | |
VERSION=1.5.2; sudo curl -Lo /usr/local/bin/docker-compose https://github.com/docker/compose/releases/download/$VERSION/docker-compose-`uname -s`-`uname -m` && sudo 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