Skip to content

Instantly share code, notes, and snippets.

@hopsoft
Created February 25, 2014 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hopsoft/9216801 to your computer and use it in GitHub Desktop.
Save hopsoft/9216801 to your computer and use it in GitHub Desktop.
Install Docker with devicemapper driver
echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
apt-get -y --force-yes update
apt-get -y --force-yes install lxc-docker
echo "DOCKER_OPTS=\"-s=devicemapper\"" > /etc/default/docker
service docker restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment