docker / docker-install

Docker installation script
https://get.docker.com
Apache License 2.0
2.19k stars 735 forks source link

elementary os 7 horus has no release file #341

Open rshpeley opened 1 year ago

rshpeley commented 1 year ago

On elementary os 7 horus (built on Ubuntu 22.04.2 LTS) I get the error,

E: The repository 'https://download.docker.com/linux/ubuntu horus Release' does not have a Release file.

When will this file be released?

There's a similar issue with nodejs, but it was a simple script change to get it to install.

I followed the Docker Docs instructions to install, so it seems this isn't the right place to post. Can someone suggest where I can post this issue?

Thalhammer commented 1 year ago

Same issue but slightly different solution, so I'll post it here again. You need to replace all occurrences in the docker apt file with jammy. To do so open a terminal and enter this:

sudo sed -i 's/horus/jammy/g' /etc/apt/sources.list.d/docker.list

Enter your password and after that do apt update to update the package lists. Now apt install docker should work fine.

tropicthedev commented 1 year ago

Can confirm that this worked. Thank you

Same issue but slightly different solution, so I'll post it here again. You need to replace all occurrences in the docker apt file with jammy. To do so open a terminal and enter this:

sudo sed -i 's/horus/jammy/g' /etc/apt/sources.list.d/docker.list

Enter your password and after that do apt update to update the package lists. Now apt install docker should work fine.

IgorBVieira commented 11 months ago

Thanks man, worked fine

Same issue but slightly different solution, so I'll post it here again. You need to replace all occurrences in the docker apt file with jammy. To do so open a terminal and enter this:

sudo sed -i 's/horus/jammy/g' /etc/apt/sources.list.d/docker.list

Enter your password and after that do apt update to update the package lists. Now apt install docker should work fine.

terceranexus6 commented 9 months ago

This worked for me as well, but I have to write:

sudo sed -i 's/horus/jammy/g' /etc/apt/sources.list.d/openmeteo-api.list 

Thank you guys!

jrichardsz commented 1 month ago

It works!! Thanks

Same issue but slightly different solution, so I'll post it here again. You need to replace all occurrences in the docker apt file with jammy. To do so open a terminal and enter this:

sudo sed -i 's/horus/jammy/g' /etc/apt/sources.list.d/docker.list

Enter your password and after that do apt update to update the package lists. Now apt install docker should work fine.

It works!! Thanks