Skip to content

Instantly share code, notes, and snippets.

@miztiik
Created February 24, 2016 19:10
Show Gist options
  • Save miztiik/e41a941ede4e08bd9d57 to your computer and use it in GitHub Desktop.
Save miztiik/e41a941ede4e08bd9d57 to your computer and use it in GitHub Desktop.
Quick set of commands to install docker & compose in one go
curl -fsSL https://get.docker.com/ | sh && \
service docker start && \
curl -L https://github.com/docker/compose/releases/download/1.6.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose && \
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