web-dev-qa-db-ja.com

Ubuntu 17.10 Artful AardvarkにDockerをインストールする方法

私は Docker CE for Ubuntu をインストールする方法の指示に従いました。リポジトリをセットアップしてからSudo apt-get update、次のエラーが発生しました:

Err:12 https://download.docker.com/linux/ubuntu artful Release                                             
404  Not Found [IP: 2600:9000:201d:5000:3:db06:4200:93a1 443]
...
Reading package lists... Done
E: The repository 'https://download.docker.com/linux/ubuntu artful 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.

Ubuntu 17.10(Artful Aardvark)を使用しています

次のDocker GPGキーが私のレポGPGキーファイルに追加されました/etc/apt/sources.list

deb [Arch=AMD64] https://download.docker.com/linux/ubuntu zesty stable
# deb-src [Arch=AMD64] https://download.docker.com/linux/ubuntu zesty stable
8
Wesam

解決

sources.listファイルを管理者として。

Sudo emacs /etc/apt/sources.list

次の2行を見つけます。

deb [Arch=AMD64] https://download.docker.com/linux/ubuntu artful stable
# deb-src [Arch=AMD64] https://download.docker.com/linux/ubuntu artful stable

そして、両方の行でWord artfulzestyに変更します。変更後、次のようになります。

deb [Arch=AMD64] https://download.docker.com/linux/ubuntu zesty stable
# deb-src [Arch=AMD64] https://download.docker.com/linux/ubuntu zesty stable

問題は修正されました。DockerCEを次のようにインストールしてください:

Sudo apt-get update && Sudo apt-get install docker-ce

説明

この問題は、これを書いている時点では、Ubuntu 17.10 Artful Aardvarkのリリースファイルは Download Dockerでは使用不可 であることです。したがって、代わりにUbuntu 17.04(zesty)のリリースファイルを使用する必要があります。

11
Wesam

Ubuntu 17.10がEdgeリリースでサポートされるようになりました。

deb [Arch=AMD64] https://download.docker.com/linux/ubuntu artful Edge

同じように。

2
Gerrit