Skip to content

Instantly share code, notes, and snippets.

@timusg
Last active December 28, 2015 07:29
Show Gist options
  • Save timusg/7464808 to your computer and use it in GitHub Desktop.
Save timusg/7464808 to your computer and use it in GitHub Desktop.
install docker in ubuntu 12.04 x86
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