Skip to content

Instantly share code, notes, and snippets.

@mcmaur
Created February 25, 2018 10:03
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mcmaur/5a0659c10af7bab9ab930e1531a82c2f to your computer and use it in GitHub Desktop.
Save mcmaur/5a0659c10af7bab9ab930e1531a82c2f to your computer and use it in GitHub Desktop.
Install Docker on Linux Mint 18 Sylvia
#remove old
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 add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable"
sudo apt-get update
sudo apt-get install docker-ce
sudo groupadd docker
sudo usermod -aG docker $USER
@godoymiguel
Copy link

i have this error
E: El paquete «docker-ce» no tiene un candidato para la instalación

@ricemouse
Copy link

this guide is helpful

@ahillio
Copy link

ahillio commented Jan 16, 2020

Thanks, that tip about using xenial instead of mint was very helpful. Plus the correction to fix the problem caused by doing it the "proper" way. Sheesh. Thanks for posting this!

@AloshkaD
Copy link

Thanks!

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