Skip to content

Instantly share code, notes, and snippets.

@royingantaginting
Last active July 27, 2016 06:52
Show Gist options
  • Save royingantaginting/57caf1542ab16d660c2a to your computer and use it in GitHub Desktop.
Save royingantaginting/57caf1542ab16d660c2a to your computer and use it in GitHub Desktop.
Oneliner script to install docker compose
# 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