由于安装docker时公钥不可用,因此无法验证签名

时间:2015-09-11 18:44:17

标签: docker

无法安装docker:

sudo sh -c "echo deb https://get.docker.com/ubuntu docker main > /etc/apt/sources.list.d/docker.list"

错误日志:

  

GPG错误:https://get.docker.com docker版本:无法验证以下签名,因为公钥不可用:NO_PUBKEY D8576A8BA88D21E9

2 个答案:

答案 0 :(得分:3)

如果不想使用手册http://docs.docker.com/linux/step_one/中的那些命令:

$ sudo apt-get update
$ sudo apt-get install wget
$ wget -qO- https://get.docker.com/ | sh

你需要的是:

 $ wget -qO- https://get.docker.com/gpg | sudo apt-key add -

PS: https://docs.docker.com/installation/debian/

答案 1 :(得分:3)

似乎入门页面已更改。

2017年8月

curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -

https://docs.docker.com/engine/installation/linux/docker-ce/debian/#install-using-the-repository