私は 公式Dockerインストールガイド Ubuntuのdocker-ceをフォローしています。
Sudo apt install docker-ce
に到達すると、E: Package 'docker-ce' has no installation candidate
を取得します。
$ Sudo apt-get update
Hit:1 http://gb.archive.ubuntu.com/ubuntu bionic InRelease
Hit:2 http://gb.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:3 http://gb.archive.ubuntu.com/ubuntu bionic-backports InRelease
Hit:4 http://security.ubuntu.com/ubuntu bionic-security InRelease
Reading package lists... Done
$ Sudo apt-get install \
> apt-transport-https \
> ca-certificates \
> curl \
> software-properties-common
Reading package lists... Done
Building dependency tree
Reading state information... Done
ca-certificates is already the newest version (20180409).
curl is already the newest version (7.58.0-2ubuntu3).
software-properties-common is already the newest version (0.96.24.32.1).
The following NEW packages will be installed
apt-transport-https
0 to upgrade, 1 to newly install, 0 to remove and 0 not to upgrade.
Need to get 1,692 B of archives.
After this operation, 152 kB of additional disk space will be used.
Do you want to continue? [Y/n]
Get:1 http://gb.archive.ubuntu.com/ubuntu bionic/universe AMD64 apt-transport-https all 1.6.1 [1,692 B]
Fetched 1,692 B in 0s (65.4 kB/s)
Selecting previously unselected package apt-transport-https.
(Reading database ... 116694 files and directories currently installed.)
Preparing to unpack .../apt-transport-https_1.6.1_all.deb ...
Unpacking apt-transport-https (1.6.1) ...
Setting up apt-transport-https (1.6.1) ...
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | Sudo apt-key add -
OK
$ Sudo apt-key fingerprint 0EBFCD88
pub rsa4096 2017-02-22 [SCEA]
9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
uid [ unknown] Docker Release (CE deb) <[email protected]>
sub rsa4096 2017-02-22 [S]
$ Sudo add-apt-repository \
> "deb [Arch=AMD64] https://download.docker.com/linux/ubuntu \
> $(lsb_release -cs) \
> stable"
Hit:1 http://gb.archive.ubuntu.com/ubuntu bionic InRelease
Hit:2 http://gb.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:3 http://gb.archive.ubuntu.com/ubuntu bionic-backports InRelease
Get:4 https://download.docker.com/linux/ubuntu bionic InRelease [64.4 kB]
Hit:5 http://security.ubuntu.com/ubuntu bionic-security InRelease
Fetched 64.4 kB in 0s (141 kB/s)
Reading package lists... Done
robin@xps:~/git/snapcraft.io$ Sudo apt-get update
Hit:1 http://gb.archive.ubuntu.com/ubuntu bionic InRelease
Hit:2 http://gb.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:3 http://gb.archive.ubuntu.com/ubuntu bionic-backports InRelease
Hit:4 https://download.docker.com/linux/ubuntu bionic InRelease
Hit:5 http://security.ubuntu.com/ubuntu bionic-security InRelease
Reading package lists... Done
$ Sudo apt-get install docker-ce
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package docker-ce is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'docker-ce' has no installation candidate
私の最初の考えは、DockerはまだBionicのパッケージをリリースしていないということです(非常に新しい)が、「install docker-ce ubuntu 18.04」を検索すると、18.04に固有のガイドが見つかりました。 -それが少なくとも作者のために働いたことを示唆する:
https://linuxconfig.org/how-to-install-docker-on-ubuntu-18-04-bionic-beaver
なぜこれが私にとってうまくいかないのか誰にも分かりませんか?
参照した同じガイドから、この時点で代わりに17.10のリポジトリを使用できます。
deb [Arch=AMD64] https://download.docker.com/linux/ubuntu artful stable
そして、すべてのdocker-ce
依存パッケージは、ubuntu bionic
リポジトリから解決されます。詳細については、 Dockerドキュメント を確認してください。気にする互換性の問題はありません:)
Docker 18.06はbionic
リポジトリに更新されました。この回避策はもう必要ありません!
docker-ce
にUbuntu 18.04
をインストールする場合は、これを実行します:
Sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | Sudo apt-key add -
Sudo add-apt-repository "deb [Arch=AMD64] https://download.docker.com/linux/ubuntu bionic test"
Sudo apt update
Sudo apt install docker-ce
インストールが正常に終了したかどうかを確認するには、次を実行します。
docker -v
出力する必要があります:
Docker version 18.06.1-ce, build e68fc7a
ガイドの何人かは銃を飛び越えました。 docker-ceはUbuntu 18.04ではまだ使用できません。サポートされているバージョンのリストを確認できます here 。
あなたがリンクした同じガイドは、docker.ioのインストールを推奨しました。これは私がやったことです。これは、docker-ceが18.04をサポートするまでの回避策です。
手順に従います ここDockerのドキュメント 私のために働いた。このコマンドでstable
をtest
に変更する必要がありました
Sudo add-apt-repository \
"deb [Arch=AMD64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
私は同じ問題を抱えていました、ここに私がそれを修正した方法があります:
$ Sudo snap install docker
$docker -v
Docker version 18.06.1-ce, build e68fc7a
$Sudo docker version
Client:
Version: 18.06.1-ce
API version: 1.38
Go version: go1.10.4
Git commit: e68fc7a
Built: Tue May 7 18:01:43 2019
OS/Arch: linux/386
Experimental: false
Server:
Engine:
Version: 18.06.1-ce
API version: 1.38 (minimum version 1.12)
Go version: go1.10.4
Git commit: e68fc7a
Built: Tue May 7 18:01:44 2019
OS/Arch: linux/386
Dockerのスナップパッケージは、Ubuntu 19.04(Disco)に簡単にインストールでき、私にとってはうまくいきました。
こちらのドキュメントをご覧ください。
https://github.com/docker/docker-snap