Ich folge der offiziellen Docker-Installationsanleitung für Docker-ce unter Ubuntu.
Wenn ich ankomme, sudo apt install docker-ce
bekomme ich 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
Mein erster Gedanke war, dass Docker noch kein Paket für Bionic veröffentlicht hat (es ist sehr neu), aber als ich nach "install docker-ce ubuntu 18.04" suchte, fand ich eine Anleitung, die 18.04 spezifisch zu sein scheint und im Grunde nur genau die gleichen Anweisungen gibt - Schlagen Sie vor, dass es zumindest für den Autor funktioniert hat:
https://linuxconfig.org/how-to-install-docker-on-ubuntu-18-04-bionic-beaver
Hat jemand eine Idee, warum das bei mir nicht funktioniert?
sudo apt install docker.io
Antworten:
Aus demselben Handbuch, auf das Sie verwiesen haben, können Sie jetzt stattdessen das Repository für 17.10 verwenden:
Und alle
docker-ce
abhängigen Pakete werden aus dem Ubuntu-bionic
Repository aufgelöst. Weitere Informationen finden Sie in der Docker-Dokumentation . Keine Kompatibilitätsprobleme zu befürchten :)2018-07-19 Update
Docker 18.06 wurde auf das
bionic
Repository aktualisiert , diese Problemumgehung ist nicht mehr erforderlich!quelle
E: Package 'docker-ce' has no installation candidate
➜ ~ docker -v Docker version 18.03.1-ce, build 9ee9f40
curl -fsSL get.docker.com | CHANNEL=stable sh
Führen Sie diese Option, wenn Sie die installierenden
docker-ce
aufUbuntu 18.04
:Um zu überprüfen, ob die Installation erfolgreich beendet wurde, führen Sie einfach Folgendes aus:
sollte ausgeben:
quelle
Ubuntu 19
, ändern Sie einfachbionic
in der 3. Zeiledisco
bionic
dasdisco
in diesem Fall funktionieren würde . Es ist so frustrierend.-ce
und-ee
sind seit ver entfernt.18.09.0
Es gibt also meines Erachtens keinen Fehler. Überprüfte meine Installation vontest
Build -sudo docker run hello-world
funktioniert korrekt. Das einzige Problem, das ich sehe - 19 ver ist in der Beta. Sorry für die Verwirrung - nur 2. Woche mit Linux :)Einige der Führer sprangen mit der Waffe; docker-ce ist noch nicht für Ubuntu 18.04 verfügbar. Sie können die Liste der unterstützten Versionen hier überprüfen .
Dieselbe Anleitung, die Sie mit der vorgeschlagenen Installation von docker.io verlinkt haben; das habe ich getan Es ist eine Problemumgehung, bis Docker-CE den 18.04. Unterstützt.
quelle
deb [arch=amd64] https://download.docker.com/linux/ubuntu artful stable
Die folgenden Schritte in der Docker-Dokumentation haben für mich funktioniert. Ich hatte gerade zu ändern ,
stable
umtest
in diesem Befehlquelle
Ich hatte das gleiche Problem. So habe ich es behoben:
quelle
Snap-Paket von Docker wird leicht auf Ubuntu 19.04 (Disco) installiert werden können und es hat bei mir funktioniert.
Lesen Sie hier die Dokumentation dazu:
https://github.com/docker/docker-snap
quelle