Skip to content

Instantly share code, notes, and snippets.

@zefhemel
Last active December 27, 2015 08:59
Show Gist options
  • Save zefhemel/7301020 to your computer and use it in GitHub Desktop.
Save zefhemel/7301020 to your computer and use it in GitHub Desktop.
Install docker on Ubuntu 13.04
#!/bin/sh
sudo sh -c "wget -qO- https://get.docker.io/gpg | apt-key add -"
# Add the Docker repository to your apt sources list.
sudo sh -c "echo deb http://get.docker.io/ubuntu docker main\
> /etc/apt/sources.list.d/docker.list"
# update
sudo apt-get update
# install
sudo apt-get install -y lxc-docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment