Created
November 20, 2015 12:10
-
-
Save random-robbie/7645237a1acecd2960f7 to your computer and use it in GitHub Desktop.
Install Docker Ubuntu Wily
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 upgrade -y; sudo apt-get dist-upgrade -y | |
sudo apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
sudo echo "deb https://apt.dockerproject.org/repo ubuntu-wily main" >> /etc/apt/sources.list.d/docker.list | |
sudo apt-get update | |
sudo apt-get install linux-image-generic-lts-trusty -y | |
sudo apt-get install docker-engine -y | |
sudo apt-get -y install python-pip | |
sudo pip install -U docker-compose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment