Skip to content

Instantly share code, notes, and snippets.

@adammarples
Created March 12, 2018 10:52
Show Gist options
  • Save adammarples/01d58af1b901565dfedc6e4c800ae1aa to your computer and use it in GitHub Desktop.
Save adammarples/01d58af1b901565dfedc6e4c800ae1aa to your computer and use it in GitHub Desktop.
#install docker on ubuntu
sudo apt-get remove docker docker-engine docker.io
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
xenial \
stable"
sudo apt-get update
sudo apt-get install docker-ce
@adammarples
Copy link
Author

Install docker on ubuntu; the instructions on the website don't work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment