
Ich versuche, Docker anhand dieser Anweisungen zu installieren: https://linuxconfig.org/wie-installiere-man-docker-auf-ubuntu-18-04-bionic-beaver
Ich führe den Befehl aus:
$ sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Und bekomme:
curl: (77) error setting certificate verify locations:
CAfile: /etc/ssl/certs/ca-certificates.crt
CApath: /etc/ssl/certs
gpg: no valid OpenPGP data found.
Antwort1
Ich habe dieses Programm ausgeführt und es hat meinen Zertifikatsspeicher repariert:
$ sudo update-ca-certificates
Antwort2
Ich schlage vor, zuerst den folgenden Befehl auszuführen, um die Zertifikate zu installieren, bevor -
$ sudo apt install apt-transport-https ca-certificates curl software-properties-common
Ich habe die Schritte zur Installation von Docker-CE im folgenden Tutorial dokumentiert. Ich hoffe, das hilft -
https://crunchytechbytz.wordpress.com/2018/06/25/how-to-install-docker-in-ubuntu-18-04/