Skip to content

Instantly share code, notes, and snippets.

@whitmo
Created May 10, 2016 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whitmo/f7c1ddce34c16ce2eda7be34a024fa5d to your computer and use it in GitHub Desktop.
Save whitmo/f7c1ddce34c16ce2eda7be34a024fa5d to your computer and use it in GitHub Desktop.
#!/bin/bash
apt-get update -qq
apt-get install -qy apt-transport-https ca-certificates
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
mkdir -p /etc/apt/sources.list.d/
echo 'deb https://apt.dockerproject.org/repo ubuntu-wily main' > /etc/apt/sources.list.d/docker.list
apt-get update -qq
sudo apt-get -qy install "linux-image-extra-$(uname -r)"
apt-get install -y docker-engine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment