Erros do Docker para Ubuntu no Sudo Apt-get update

Erros do Docker para Ubuntu no Sudo Apt-get update

Há um tempo instalei o Docker, mas não lembro o que fiz.

Ainda estou aprendendo/me acostumando com o Linux e não tenho certeza de como me livrar do seguinte erro.

Quando executo sudo /apt-get updaterecebo o seguinte erro. Como pode se livrar desse erro?

Gostaria apenas de eliminar esse erro, não de reinstalar o Docker. Preciso/preciso reverter a add-apt-repositoryação que fiz durante a instalação?

Err:14 https://download.docker.com/linux/ubuntu eoan Release                   
  404  Not Found [IP: 2600:9000:21d5:ae00:3:db06:4200:93a1 443]
Get:15 http://us.archive.ubuntu.com/ubuntu eoan-updates InRelease [97.5 kB]   
Err:16 https://download.docker.com/linux/debian eoan Release                   
  404  Not Found [IP: 2600:9000:21d5:ae00:3:db06:4200:93a1 443]
Get:17 http://us.archive.ubuntu.com/ubuntu eoan-backports InRelease [88.8 kB]
Hit:19 https://packagecloud.io/slacktechnologies/slack/debian jessie InRelease 
Reading package lists... Done                                                  
E: The repository 'https://download.docker.com/linux/ubuntu eoan 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.
E: The repository 'https://download.docker.com/linux/debian eoan 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.

Responder1

Obrigado a outros pelo contexto. Caso isso ajude, para realmente resolver o erro, resolvi executando:

sudo nano /etc/apt/sources.list

Em seguida, apenas removendo a fonte do repositório para eoan e certificando-me de que estava usando o seguinte:

deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable
# deb-src [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable

Depois disso posso correr apt-getsem problemas.

informação relacionada