I use linux-mint I am trying to install docker. I have followed the steps:
sudo apt-get remove docker docker-engine docker.io containerd runc
sudo apt-get update
sudo apt-get install \
ca-certificates \
curl \
gnupg \
lsb-release
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
But at the moment of executing: sudo apt-get update
I get the error that I have put above.
It has almost no information so I guess the solution is very obvious but not for me. I am trying to install docker.
I've just cut and pasted, I understand where I could have gone wrong.