Skip to content

Instantly share code, notes, and snippets.

@alasin
Created November 8, 2016 06:42
Show Gist options
  • Save alasin/edf278b18a5338361075829f897b36cd to your computer and use it in GitHub Desktop.
Save alasin/edf278b18a5338361075829f897b36cd to your computer and use it in GitHub Desktop.
Docker installation on Ubuntu 14.04
#https://docs.docker.com/engine/installation/linux/ubuntulinux/
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt-get update
sudo apt-get install linux-image-extra-$(uname -r) linux-image-extra-virtual
sudo apt-get install docker-engine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment