Created
February 25, 2018 10:03
-
-
Save mcmaur/5a0659c10af7bab9ab930e1531a82c2f to your computer and use it in GitHub Desktop.
Install Docker on Linux Mint 18 Sylvia
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
this guide is helpful
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!
Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
i have this error
E: El paquete «docker-ce» no tiene un candidato para la instalación