2017-10-29 9 views
7

install Docker CE for Ubuntuの手順に従っています。UbuntuでDockerをインストールする方法17.10 Artful Aardvark

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(巧みなツチブタ)を使用してい

次ドッカーGPGキー

が私のレポGPGキーに追加されました:Iセットアップリポジトリ、その後、 sudo apt-get updateを走った後、私は次のエラーを得ました管理者として、あなたの sources.listファイルを開き /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 

答えて

9

ソリューション

を提出。

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 

をし、両方の線でzestyに単語artfulを変更します。変更後、彼らは次のようになります。固定

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

問題、今でドッカーCEをインストールします。

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

説明

Thの問題は、これを書いているように、そのためのリリースファイルですUbuntu 17.10 Artful Aardvarkはnot available on Download Dockerです。したがって、代わりにUbuntu 17.04(zesty)のリリースファイルを使用する必要があります。

2

のUbuntu 17.10は今edgeリリースではサポートされているので、あなたにも

deb [arch=amd64] https://download.docker.com/linux/ubuntu artful edge

を使用することができます。

関連する問題