安装 Docker 时出现“未找到有效的 OpenPGP 数据”错误

安装 Docker 时出现“未找到有效的 OpenPGP 数据”错误

帮我安装Docker:

spyam@linux:~$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
curl: (22) The requested URL returned error: 403 
gpg: no valid OpenPGP data found.

这是在 Ubuntu 20.04 LTS 上。

答案1

尝试:

wget https://download.docker.com/linux/ubuntu/gpg
apt-key add gpg

我刚刚下载了密钥,没有任何问题。

相关内容