PHP7学习 – 百客网 https://www.qumai8.cn 明天的电商 是我的时代 谁与争锋 Fri, 19 Jul 2024 03:18:13 +0000 zh-Hans hourly 1 https://wordpress.org/?v=6.7.2 https://www.qumai8.cn/wp-content/uploads/2024/05/cropped-222-32x32.jpeg PHP7学习 – 百客网 https://www.qumai8.cn 32 32 安装指定版本 docker https://www.qumai8.cn/index.php/2024/07/4422/.html https://www.qumai8.cn/index.php/2024/07/4422/.html#respond Wed, 17 Jul 2024 16:18:04 +0000 https://www.qumai8.cn/?p=4422  

先安装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
]]>
https://www.qumai8.cn/index.php/2024/07/4422/.html/feed 0