操作环境
操作系统:Deepin20.9
使用电脑:Dell G15
遇到问题
按照https://docs.docker.com/engine/install/debian/的教程,正在完成如图所示操作时
报以下错误
我们知道我们是按照Debian10去安装Docker的,
此时我的soucelist如图所示:

在更新apt-get的 过程中,发现
错误:13 https://download.docker.com/linux/debian apricot Release
404 Not Found [IP: 2600:9000:21c4:8a00:3:db06:4200:93a1 443]
正在读取软件包列表... 完成
E: 仓库 “https://download.docker.com/linux/debian apricot Release” 没有 Release 文件。
N: 无法安全地用该源进行更新,所以默认禁用该源。
N: 参见 apt-secure(8) 手册以了解仓库创建和用户配置方面的细节。
debian有名叫apricot的版本么?没有!
可以参考以下文章了解soucelist文件的结构:
详解Ubuntu的source.list文件_sources.list_VinQin的博客-优快云博客
解决办法
参考E: 仓库 “https://download.docker.com/linux/debian n/a Release” 没有 Release 文件。N: 无法安全地用该源进行更新,所以默认禁用该源_debian仓库无release文件_weixin_42111284的博客-优快云博客的解决办法,可以打开docker.list文件

将apricot 改为buster
deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian buster stable
保存文件!
然后对apt-get进行更新
sudo apt-get update
就可以成功下载包