Last active
December 28, 2015 07:29
-
-
Save timusg/7464808 to your computer and use it in GitHub Desktop.
install docker in ubuntu 12.04 x86
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
sudo sh -c "wget -qO- https://get.docker.io/gpg | apt-key add -" | |
# Add the Docker repository to your apt sources list. | |
sudo sh -c "echo deb http://get.docker.io/ubuntu docker main\ | |
> /etc/apt/sources.list.d/docker.list" | |
# Update your sources | |
sudo apt-get update | |
# Install, you will see another warning that the package cannot be authenticated. Confirm install. | |
sudo apt-get install -y lxc-docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment