web-dev-qa-db-ja.com

Ubuntu 16.04にDockerをインストール:404が見つかりません

Ubuntu 16.04にDockerをインストールしようとすると、次のようになります。

michael@michael-VirtualBox:~$ Sudo apt-get update                    
Err:8 https://download.docker.com/linux/ubuntu \ Release                            
  404  Not Found [IP: 13.32.250.25 443]

Reading package lists... Done                                                       

E: The repository 'https://download.docker.com/linux/ubuntu \ 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.

誰かがこの問題を解決するのを手伝ってくれる?

1
Michael Adams

ソフトウェアソースが間違っている可能性があります。リストされたコマンドを使用する場合 here コマンドは次のようになります。

add-apt-repository deb [Arch=AMD64] https://download.docker.com/linux/ubuntu xenial stable

これは多かれ少なかれ/etc/apt/sources.lstに追加される新しい行です

1
xenoid

安全なソースは私にとってはうまくいきませんでした。私と同じ問題が発生している場合は、次のリポジトリリンクを試してみてください。

以下を/etc/apt/sources.listファイルに追加します。

deb [Arch=AMD64] http://download.docker.com/linux/ubuntu xenial stable
0
uspinar