web-dev-qa-db-fra.com

mise à jour apt docker.com version 404 introuvable

J'ai récemment essayé d'installer Docker en utilisant cette méthode

curl -fsSL get.docker.com -o get-docker.sh
sh get-docker.sh

mais cela n'a pas fonctionné pour moi peut-être des paquets cassés ou quelque chose après ça j'ai installé docker && docker compose en utilisant la méthode apt et ça marche bien mais quand j'essaye de mettre à jour ou mettre à jour mon système je peux voir les messages suivants je ne sais pas vraiment quoi était le problème s'il vous plaît donnez-moi une solution merci.

$ Sudo apt-get update

Hit:1 http://ppa.launchpad.net/daniruiz/flat-remix/ubuntu bionic InRelease
Hit:2 https://dl.winehq.org/wine-builds/ubuntu bionic InRelease                                    
Hit:3 http://security.ubuntu.com/ubuntu bionic-security InRelease                                  
Ign:4 http://dl.google.com/linux/chrome/deb stable InRelease                                       
Hit:5 http://dl.google.com/linux/chrome/deb stable Release                                         
Hit:6 http://ppa.launchpad.net/ondrej/php/ubuntu bionic InRelease                                  
Hit:7 http://lk.archive.ubuntu.com/ubuntu bionic InRelease                                         
Ign:9 https://download.docker.com/linux/debian bionic InRelease                                    
Hit:10 http://lk.archive.ubuntu.com/ubuntu bionic-updates InRelease                                
Err:11 https://download.docker.com/linux/debian bionic Release                                     
  404  Not Found [IP: 13.35.8.98 443]
Hit:13 http://lk.archive.ubuntu.com/ubuntu bionic-backports InRelease                              
Hit:12 https://packagecloud.io/slacktechnologies/slack/debian jessie InRelease
Reading package lists... Done                                
E: The repository 'https://download.docker.com/linux/debian bionic 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.


$ Sudo apt-get upgrade

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
The following packages have been kept back:
  libxml2 libxml2:i386
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.

Comment puis-je supprimer de ma liste source parce que je n'en ai plus besoin

1
soldier

Selon la page d'accueil pour Ubunt , le problème est qu'il devrait être https://download.docker.com/linux/ubuntu au lieu de https://download.docker.com/linux/debian.

Exécutez la commande suivante pour résoudre ce problème:

Sudo sed -i 's/debian/ubuntu/g' /etc/apt/sources.list.d/docker.list
Sudo apt update

Cependant, si cela ne résout pas le problème, exécutez la commande suivante:

Sudo sed -i 's|docker.com/linux/debian|docker.com/linux/ubuntu|g' /etc/apt/sources.list
Sudo apt update
3
mchid