Last active
November 1, 2016 05:55
-
-
Save igez/87db029dae519279b700f491e25eea8b to your computer and use it in GitHub Desktop.
Install Docker Ubuntu 14.04
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 | |
sudo apt-get update && sudo apt-get -y install wget nano | |
wget -qO- https://get.docker.com/ | sh | |
sudo usermod -aG docker $(whoami) | |
# install docker compose | |
sudo apt-get -y install python-pip | |
sudo pip install docker-compose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment