现在已经是2024年了 Centos 7 的支持愈发到结束的日子了,之前已经水过 Centos 、 Ubuntu 这些系统的安装在 kubernetes 安装步骤随带了 docker 的安装, openEuler 由于是使用新版 kubernetes 就没记录。
系统:Debian GNU/Linux 12 (bookworm)
1、安装 apt 依赖包,用于通过HTTPS来获取仓库
apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
2、添加 Docker 的官方 GPG 密钥
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/debian/gpg | apt-key add -
apt-key export 0EBFCD88 | gpg --dearmour -o /etc/apt/trusted.gpg.d/docker.gpg
3、添加在线源
add-apt-repository "deb https://mirrors.ustc.edu.cn/docker-ce/linux/debian/ $(lsb_release -cs) stable"
4、查看可在线的版本
apt-cache madison docker-ce
5、更新源
apt-get update
6、安装
apt-get install docker-ce
7、
8、
9、