Last active
April 8, 2022 11:18
-
-
Save dweldon/39ca0536168a92815a56df44eb55a337 to your computer and use it in GitHub Desktop.
Install docker CE on Linux Mint 18.3
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
#!/usr/bin/env bash | |
# https://docs.docker.com/install/linux/docker-ce/ubuntu/ | |
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 | |
# https://docs.docker.com/compose/install/ | |
sudo curl -L https://github.com/docker/compose/releases/download/1.20.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose | |
sudo chmod +x /usr/local/bin/docker-compose | |
# https://docs.docker.com/install/linux/linux-postinstall/ | |
sudo groupadd docker | |
sudo usermod -aG docker $USER |
Thank you this worked for me
2020 Still works perfect. Thank you so much!
If someone has an error like Couldn't connect to Docker daemon at http+docker://localhost - is it running?
try
sudo chown $USER /var/run/docker.sock
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@dweldon thanks again! I am using Mint 18.3 (based on xenial) which is how I found this gist. I think I found some clues about the problem, seems to be a networking error. I will continue investigating.