Skip to content

Instantly share code, notes, and snippets.

@durch
Created March 29, 2017 18:38
Show Gist options
  • Save durch/4fdeafd3282e85573c2b098a3b24cadb to your computer and use it in GitHub Desktop.
Save durch/4fdeafd3282e85573c2b098a3b24cadb to your computer and use it in GitHub Desktop.
# Out with the old
apt-get remove docker docker-engine
# In with the new
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 -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
apt-get update
apt-get install docker-ce
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment