Skip to content

Instantly share code, notes, and snippets.

@parente
Last active February 6, 2022 17:35
Show Gist options
  • Star 40 You must be signed in to star a gist
  • Fork 13 You must be signed in to fork a gist
  • Save parente/025dcb2b9400a12d1a9f to your computer and use it in GitHub Desktop.
Save parente/025dcb2b9400a12d1a9f 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
@toddlers
Copy link

toddlers commented Nov 1, 2017

@jedwards1211 you can find a nice description for the same here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment