Last active
June 14, 2016 13:30
-
-
Save akalipetis/234bb2d496723975bcb197ca77d37a0e to your computer and use it in GitHub Desktop.
Docker and Docker Compose installation
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
#! /bin/bash | |
# Run through curl, using sudo - curl -L https://gist.github.com/akalipetis/234bb2d496723975bcb197ca77d37a0e/raw/8db662920186ca8bb5bc150ada80774a350cda63/install.sh | sudo bash | |
wget https://get.docker.com/builds/Linux/x86_64/docker-1.11.2.tgz | |
tar -xzf docker-1.11.2.tgz | |
mv docker/docker* /usr/local/bin/ | |
rm -r docker docker-1.11.2.tgz | |
mv docker/docker* /usr/local/bin/ | |
curl -L https://github.com/docker/compose/releases/download/1.7.1/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