安装指定版本 docker

 

先安装docker

添加下载docker的镜像站,以下两个任选一个即可。

#清华大学镜像站
export DOWNLOAD_URL="https://mirrors.tuna.tsinghua.edu.cn/docker-ce"
#中科大镜像站
export DOWNLOAD_URL="http://mirrors.ustc.edu.cn/docker-ce"

全新debian不带curl需要先安装,Ubuntu自带。

sudo apt install curl

然后使用如下命令然后等待即可

sudo curl -fsSL https://get.hsj01wzonline.top:9186/sh/docker.sh | bash

设置docker开机自启动

sudo systemctl enable docker

 

 

 

sudo apt-cache madison docker-ce | awk '{ print $3 }'

先查询软件有哪些版本,这个是以查询docker-ce为例,其他软件自行替换。

# 以5:23.0.6-1~debian.12~bookworm 为例 VERSION_STRING=5:23.0.6-1~debian.12~bookworm

sudo apt-get install docker-ce=5:23.0.6-1~debian.12~bookworm docker-ce-cli=5:23.0.6-1~debian.12~bookworm

About the Author

Avatar photo

今生在线

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据