Skip to content

Instantly share code, notes, and snippets.

@mattlo
Created February 11, 2015 18:31
Show Gist options
  • Save mattlo/db346f9fb5d74cfcb5ea to your computer and use it in GitHub Desktop.
Save mattlo/db346f9fb5d74cfcb5ea to your computer and use it in GitHub Desktop.
docker/fig ubuntu
sudo apt-get update && sudo apt-get install -y build-essential curl dkms 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 install -y lxc-docker
curl -L https://github.com/docker/fig/releases/download/1.0.1/fig-`uname -s`-`uname -m` > /usr/local/bin/fig; chmod +x /usr/local/bin/fig
echo "Done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment