From 6c7ea0c25e853ac89d13cf4f6920010c8393b91e Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Sat, 31 Jan 2026 11:21:47 +0800 Subject: [PATCH] =?UTF-8?q?chore(deps):=20=E6=9B=B4=E6=96=B0=20Docker=20?= =?UTF-8?q?=E9=95=9C=E5=83=8F=E6=BA=90=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 etcd 镜像源从 quay.io 替换为 quay.nju.edu.cn - 将 vLLM-Ascend 镜像源从 quay.io 替换为 quay.nju.edu.cn - 统一使用南京大学镜像仓库地址以提高下载速度 --- deployment/docker/milvus/docker-compose.yml | 2 +- scripts/images/mineru-npu/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deployment/docker/milvus/docker-compose.yml b/deployment/docker/milvus/docker-compose.yml index f2f9ceb..664eb3c 100644 --- a/deployment/docker/milvus/docker-compose.yml +++ b/deployment/docker/milvus/docker-compose.yml @@ -1,7 +1,7 @@ services: etcd: container_name: milvus-etcd - image: quay.io/coreos/etcd:v3.5.18 + image: quay.nju.edu.cn/coreos/etcd:v3.5.18 environment: - ETCD_AUTO_COMPACTION_MODE=revision - ETCD_AUTO_COMPACTION_RETENTION=1000 diff --git a/scripts/images/mineru-npu/Dockerfile b/scripts/images/mineru-npu/Dockerfile index f80721e..3a745af 100644 --- a/scripts/images/mineru-npu/Dockerfile +++ b/scripts/images/mineru-npu/Dockerfile @@ -1,6 +1,6 @@ # 基础镜像配置 vLLM 或 LMDeploy ,请根据实际需要选择其中一个,要求 ARM(AArch64) CPU + Ascend NPU。 # Base image containing the vLLM inference environment, requiring ARM(AArch64) CPU + Ascend NPU. -FROM quay.io/ascend/vllm-ascend:v0.11.0rc2 +FROM quay.nju.edu.cn/ascend/vllm-ascend:v0.11.0rc2 # Base image containing the LMDeploy inference environment, requiring ARM(AArch64) CPU + Ascend NPU. # FROM crpi-4crprmm5baj1v8iv.cn-hangzhou.personal.cr.aliyuncs.com/lmdeploy_dlinfer/ascend:mineru-a2 @@ -29,4 +29,4 @@ RUN python3 -m pip install -U pip -i https://mirrors.aliyun.com/pypi/simple && \ RUN TORCH_DEVICE_BACKEND_AUTOLOAD=0 /bin/bash -c "mineru-models-download -s modelscope -m all" # Set the entry point to activate the virtual environment and run the command line tool -ENTRYPOINT ["/bin/bash", "-c", "export MINERU_MODEL_SOURCE=local && exec \"$@\"", "--"] \ No newline at end of file +ENTRYPOINT ["/bin/bash", "-c", "export MINERU_MODEL_SOURCE=local && exec \"$@\"", "--"]