Last active
August 29, 2015 14:08
-
-
Save schleg/d9a20e0fdba33a86aace to your computer and use it in GitHub Desktop.
Setup Docker on Ubuntu 14.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
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" | |
apt-get update | |
apt-get install -y lxc-docker haproxy git-core |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment