Skip to content

Instantly share code, notes, and snippets.

@sethbergman
Forked from dweldon/install-docker.sh
Last active December 27, 2021 16:38
Show Gist options
  • Star 48 You must be signed in to star a gist
  • Fork 24 You must be signed in to fork a gist
  • Save sethbergman/9ef9d14aef86ba7705791785ed377f69 to your computer and use it in GitHub Desktop.
Save sethbergman/9ef9d14aef86ba7705791785ed377f69 to your computer and use it in GitHub Desktop.
Install Docker CE on Linux Mint 19
#!/usr/bin/env bash
set -e
# https://docs.docker.com/engine/install/ubuntu/
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 2>/dev/null
sudo echo "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') bionic stable" > /etc/apt/sources.list.d/docker.list
sudo apt-get -y update
sudo apt-get -y install docker-ce docker-ce-cli containerd.io
# https://docs.docker.com/compose/install/
sudo curl -L https://github.com/docker/compose/releases/download/1.22.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
@Guetbest
Copy link

Hello, I have this message after sudo apt-get install docker-ce :

Reading state information... Done
Package docker-ce is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

@Guetbest
Copy link

Looks like sudo apt-get install docker works

@trfiladelfo
Copy link

trfiladelfo commented May 29, 2019

Now
sudo apt-get install docker.io

Works in Linux Mint 19

@betray32
Copy link

Thanks bro

@betray32
Copy link

Now
sudo apt-get install docker.io

Works in Linux Mint 19

Very nice thx

@sethbergman
Copy link
Author

Thanks @trfiladelfo I've updated the gist. Also updated to the latest LTS version of docker-compose.

@jobedylbas
Copy link

jobedylbas commented Aug 13, 2019

Hey, I tried to use your script on Linux Mint 19.2, but adding the apt-repository I get the following message:

Malformed input, repository not added.

So, to solve this problem I use the following line, basically you have to edit manually the sources.list.

echo -e "\ndeb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | sudo tee -a /etc/apt/sources.list

This occurs because add-apt-repository of Linux Mint is not the same as Ubuntu, as said in this issue. Maybe, this could help someone else.
Thnx

@mikconstantinou
Copy link

Hey, I tried to use your script on Linux Mint 19.3, but adding the apt-repository I get the following message:

Malformed input, repository not added.

So, to solve this problem I use the following line, basically you have to edit manually the sources.list.

echo -e "\ndeb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | sudo tee -a /etc/apt/sources.list

This occurs because add-apt-repository of Linux Mint is not the same as Ubuntu, as said in this issue. Maybe, this could help someone else.
Thnx

Thank you so much, I was having this exact issue as well. This solved it for me.

@t7cabral
Copy link

t7cabral commented Oct 7, 2019

Ei, tentei usar seu script no Linux Mint 19.3, mas adicionando o repositório apt, recebo a seguinte mensagem:

Malformed input, repository not added.

Então, para resolver esse problema, eu uso a seguinte linha, basicamente você precisa editar manualmente o sources.list.

echo -e "\ndeb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | sudo tee -a /etc/apt/sources.list

Isso ocorre porque o add-apt-repository do Linux Mint não é o mesmo que Ubuntu, como dito nesta edição . Talvez isso possa ajudar outra pessoa.
Thnx

Estava com o mesmo problema no Linux Mint cinnamon 19.2 "Tina" x64b. Obrigado.

@PedroCarl0s
Copy link

Hey, I tried to use your script on Linux Mint 19.3, but adding the apt-repository I get the following message:

Malformed input, repository not added.

So, to solve this problem I use the following line, basically you have to edit manually the sources.list.

echo -e "\ndeb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | sudo tee -a /etc/apt/sources.list

This occurs because add-apt-repository of Linux Mint is not the same as Ubuntu, as said in this issue. Maybe, this could help someone else.
Thnx

Thanks!

@jackemathe
Copy link

Hey, I tried to use your script on Linux Mint 19.3, but adding the apt-repository I get the following message:

Malformed input, repository not added.

So, to solve this problem I use the following line, basically you have to edit manually the sources.list.

echo -e "\ndeb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | sudo tee -a /etc/apt/sources.list

This occurs because add-apt-repository of Linux Mint is not the same as Ubuntu, as said in this issue. Maybe, this could help someone else.
Thnx

Thanks so much

@AliSheheryar
Copy link

If anyone like me using 19.3 tricia release of Mint, and having problems with error
"Malformed input, repository not added."
visit ( https://forums.linuxmint.com/viewtopic.php?t=300469 ).
The answer provided by " Diydavid" would do the trick.

Gracias

@sethbergman
Copy link
Author

I've updated this gist to resolve issues based on the comments above.

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