Skip to content

Installing Docker on Ubuntu 14.04 LTS

Johannes edited this page Jan 29, 2015 · 2 revisions

Installing docker.io on Ubuntu 14.04 LTS

Use the following commands:

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
sudo sh -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
sudo apt-get update
sudo apt-get install lxc-docker

Or use the following script:

curl -s https://get.docker.io/ubuntu/ | sudo sh
Clone this wiki locally