Skip to content

Instantly share code, notes, and snippets.

@maestrofx
Forked from parente/install_latest_docker.sh
Created December 11, 2015 09:41
Show Gist options
  • Save maestrofx/44b764f8889ecc5467a2 to your computer and use it in GitHub Desktop.
Save maestrofx/44b764f8889ecc5467a2 to your computer and use it in GitHub Desktop.
Install Docker latest on Ubuntu 14.04 with AUFS as the storage driver
#!/bin/bash
sudo apt-get update
sudo apt-get -y install linux-image-extra-$(uname -r)
sudo sh -c "wget -qO- https://get.docker.io/gpg | apt-key add -"
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 -y install lxc-docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment