From 8d400e07ccce7c71e82d600084b15eaab8356a4e Mon Sep 17 00:00:00 2001 From: xuqinmin12 Date: Fri, 12 Jun 2026 18:56:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20Docker=20=E9=95=9C=E5=83=8F=E5=8A=A0?= =?UTF-8?q?=E9=80=9F=E9=A6=96=E9=80=89=20docker.1ms.run=EF=BC=88=E5=9B=BD?= =?UTF-8?q?=E5=86=85=E5=8F=AF=E7=94=A8=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f0860eb..e830205 100755 --- a/install.sh +++ b/install.sh @@ -135,7 +135,7 @@ fi _DAEMON_CFG="/etc/docker/daemon.json" if ! curl -fsS --max-time 5 https://registry-1.docker.io/v2/ >/dev/null 2>&1; then info "Docker Hub 不可达,尝试配置国内镜像加速..." - _MIRRORS='{"registry-mirrors":["https://docker.mirrors.ustc.edu.cn","https://hub-mirror.c.163.com","https://mirror.baidubce.com"]}' + _MIRRORS='{"registry-mirrors":["https://docker.1ms.run","https://docker.mirrors.ustc.edu.cn","https://hub-mirror.c.163.com"]}' _configured=0 if [ "$(id -u)" -eq 0 ]; then printf '%s\n' "$_MIRRORS" > "$_DAEMON_CFG" && _configured=1