清华源docker地址:

 
https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/

安装docker之前需要添加 GPG 公钥,主要是用来验证安装文件是否被篡改,先安装工具:curl和gnupg2,两个工具。

 
apt install curl gnupg2

下面是清华源GPG地址,下载和添加。

 
curl -fsSL https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/gpg |apt-key add -

配置清华源

 
nano /etc/apt/sources.list

在尾部添加清华源,bookworm代表debian12。stable代表发布分支,主要有三个:stable(稳定版)、testing(测试版)和 unstable(不稳定版)。

 
deb https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian bookworm stable

更新库,然后安装

 
apt update
 
apt install docker-ce

 

 

 

转载:https://www.cnblogs.com/netcore3/p/18281305

文章信息

创建时间
2024-09-08
作者
郭铭心
是否所有人可见
所有人可见
最后修改日期
2024-09-08
点击数
39