Skip to content

Instantly share code, notes, and snippets.

@dweldon
Last active May 4, 2026 23:58
Show Gist options
  • Select an option

  • Save dweldon/39ca0536168a92815a56df44eb55a337 to your computer and use it in GitHub Desktop.

Select an option

Save dweldon/39ca0536168a92815a56df44eb55a337 to your computer and use it in GitHub Desktop.
Install docker CE on Linux Mint 18.3
#!/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
@aurelienlair

Copy link
Copy Markdown

Thanks

@sjpatrick

Copy link
Copy Markdown

Worked perfectly. Thanks. You rock.

@sjpatrick

Copy link
Copy Markdown

PS, that was for mint19.

@guilhermefmotta

Copy link
Copy Markdown

Thanks dude this works for me, i'm using mint 19

@johnt1000

Copy link
Copy Markdown

Thank you

@laissonsilveira

Copy link
Copy Markdown

Tks S2

@Tea-pot

Tea-pot commented Nov 9, 2018

Copy link
Copy Markdown

Thank you so much!

@orehush

orehush commented Nov 15, 2018

Copy link
Copy Markdown

Thx)

@FerStation

Copy link
Copy Markdown

Thank you 👍 🥇

@Wahba91

Wahba91 commented Dec 6, 2018

Copy link
Copy Markdown

Great

@famachot

famachot commented Dec 6, 2018

Copy link
Copy Markdown

Thank you so much

@ronalddimas13

Copy link
Copy Markdown

Worked perfectly
Thank you

@lcloss

lcloss commented Dec 31, 2018

Copy link
Copy Markdown

Awesome! Worked perfectly on Ubuntu 18.04.
Thank you so much.

@DenSul

DenSul commented Jan 21, 2019

Copy link
Copy Markdown

thx so much!

@antimoroma

Copy link
Copy Markdown

THX SO MUCH!!!!!!!!!!!

@iteremasov

Copy link
Copy Markdown

+++

@caravan4eg

Copy link
Copy Markdown

Thanks. It works!

@RicardoGeek

Copy link
Copy Markdown

at last!!!
The trick is to have the correct repo added 👍
Thanks for the help!

@gillallifam

Copy link
Copy Markdown

2019 still working!

@john-light

Copy link
Copy Markdown

hey @dweldon thanks for publishing this! I ran into some errors on the sudo apt install docker-ce step. Any idea what might be going wrong here? https://gist.github.com/john-light/0fde66e399417efaad8bf560ba687eeb

if you do take a look, we can move to the comments on my gist so we don't clutter up your comment section here with my issues :)

cheers

@dweldon

dweldon commented Mar 29, 2020

Copy link
Copy Markdown
Author

@john-light I'll admit I haven't used this gist in a couple of years, so I'm not sure just by looking at the error log. I'd try experimenting with different deb versions depending on your OS (e.g. you may be using a more recent version of ubuntu). According to this, there's also eoan and bionic available. You could try uninstalling and using one of those in the sudo add-apt-repository step.

@john-light

Copy link
Copy Markdown

@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.

@blessingk

Copy link
Copy Markdown

Thank you this worked for me

@DanInSpace104

Copy link
Copy Markdown

2020 Still works perfect. Thank you so much!

@kexxdon

kexxdon commented Dec 8, 2020

Copy link
Copy Markdown

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