Skip to content

Instantly share code, notes, and snippets.

@mborodov
Forked from KrustyHack/docker-install-full.sh
Last active May 19, 2016 12:27
Show Gist options
  • Save mborodov/48efea1178da5a0677af to your computer and use it in GitHub Desktop.
Save mborodov/48efea1178da5a0677af to your computer and use it in GitHub Desktop.
Install docker and docker-compose
#!/bin/sh
sudo wget -qO- https://get.docker.com/ | sh
sudo wget -O /usr/local/bin/docker-compose https://github.com/docker/compose/releases/download/1.5.1/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