web-dev-qa-db-ja.com

apt update docker.comリリース404が見つかりません

最近、この方法を使用してDockerをインストールしようとしています

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

しかし、壊れたパッケージや、aptメソッドを使用してdocker && docker composeをインストールした後はうまくいきませんが、システムを更新またはアップグレードしようとすると、次のメッセージが表示され、実際には何がわからないのですか?問題だったので、解決策を教えてください。

$ 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.

もう必要ないため、ソースリストから削除するにはどうすればよいですか

1
soldier

buntuのDockerページ によると、問題はそれがhttps://download.docker.com/linux/ubuntu の代わりに https://download.docker.com/linux/debian

これを修正するには、次のコマンドを実行します。

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

ただし、それでも問題が解決しない場合は、次のコマンドを実行します。

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