Skip to content

Instantly share code, notes, and snippets.

@m3talsmith
Created March 25, 2014 02:30
Show Gist options
  • Save m3talsmith/9754250 to your computer and use it in GitHub Desktop.
Save m3talsmith/9754250 to your computer and use it in GitHub Desktop.
How to install docker on 13.10
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
sudo sh -c "echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
sudo apt-get update
sudo apt-get --yes install linux-image-extra-`uname -r`
sudo apt-get --yes install lxc-docker wget python-software-properties python g++ make cgroup-lite software-properties-common
sudo wget -O /etc/init/docker.conf https://raw.github.com/dotcloud/docker/master/contrib/init/upstart/docker.conf
sudo service docker restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment