Skip to content

Instantly share code, notes, and snippets.

@onlydole
Forked from parente/install_latest_docker.sh
Last active August 29, 2015 14:16
Show Gist options
  • Save onlydole/0974580407f2cdeb6f5d to your computer and use it in GitHub Desktop.
Save onlydole/0974580407f2cdeb6f5d to your computer and use it in GitHub Desktop.
#!/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