Hi, I’m trying to install docker in Mint Ulyssa and it fails when fetching the release file in the corresponding repository. Acording to docker docs:
echo \
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
and when
sudo apt update
I get this error:
Hit:1 http://mirrors.eze.sysarmy.com/ubuntu focal InRelease
Hit:2 http://mirrors.eze.sysarmy.com/ubuntu focal-updates InRelease
Hit:3 http://mirrors.eze.sysarmy.com/ubuntu focal-backports InRelease
Ign:4 https://mint.zero.com.ar/mintpackages ulyssa InRelease
Hit:5 https://mint.zero.com.ar/mintpackages ulyssa Release
Ign:6 https://download.docker.com/linux/ubuntu ulyssa InRelease
Hit:7 http://archive.canonical.com/ubuntu focal InRelease
Hit:8 http://security.ubuntu.com/ubuntu focal-security InRelease
Err:10 https://download.docker.com/linux/ubuntu ulyssa Release
404 Not Found [IP: 2600:9000:21f4:cc00:3:db06:4200:93a1 443]
Err:11 https://packages.microsoft.com/repos/ms-teams stable InRelease
500 Internal Server Error [IP: 13.90.56.68 443]
Reading package lists... Done
E: The repository 'https://download.docker.com/linux/ubuntu ulyssa Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
Tryied adding directly some other repos like
deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable
to
/etc/apt/sources.list
but didn’t work either.
I’m using ZSH shell, just to say.
Thank you all!