From c9850965641de6b69a5dbb175dcd9a9145a9b03c Mon Sep 17 00:00:00 2001 From: PoRi <1960825664@qq.com> Date: Wed, 18 Mar 2026 13:43:55 +0800 Subject: [PATCH] =?UTF-8?q?feat(recipe):=20=E6=B7=BB=E5=8A=A0=E8=BD=A9?= =?UTF-8?q?=E8=BE=95=E9=95=9C=E5=83=8F=E7=AB=99=E6=94=AF=E6=8C=81=E5=B9=B6?= =?UTF-8?q?=E6=9B=B4=E6=96=B0Docker=E9=95=9C=E5=83=8F=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增Xuanyuan镜像站配置,包括站点信息和URL - 更新Docker镜像源列表,添加轩辕镜像站作为新的镜像源 - 同步更新sources最后更新时间为2025-08-09 - 轴辕镜像站提供docker hub镜像代理服务 --- src/recipe/ware/Docker/Docker.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/recipe/ware/Docker/Docker.c b/src/recipe/ware/Docker/Docker.c index 93e725a7..c2d253eb 100644 --- a/src/recipe/ware/Docker/Docker.c +++ b/src/recipe/ware/Docker/Docker.c @@ -17,6 +17,13 @@ Fit2Cloud = IS_DedicatedMirrorSite, "fit2cloud", "FIT2CLOUD", "杭州飞致云信息科技有限公司", "https://www.fit2cloud.com/", {SKIP, ToFill, ToFill, NULL, ROUGH} +}, + +Xuanyuan = +{ + IS_DedicatedMirrorSite, + "xuanyuan", "轩辕", "轩辕镜像站", "https://docker.xuanyuan.me", + {SKIP, ToFill, ToFill, NULL, ROUGH} }; def_target(wr_docker, "docker/dockerhub"); @@ -28,7 +35,7 @@ wr_docker_prelude () chef_set_recipe_created_on (this, "2024-06-08"); chef_set_recipe_last_updated (this, "2025-08-09"); - chef_set_sources_last_updated (this, "2025-07-14"); + chef_set_sources_last_updated (this, "2025-08-09"); chef_set_chef (this, "@happy-game"); chef_set_cooks (this, 2, "@happy-game", "@ccmywish"); @@ -45,7 +52,8 @@ wr_docker_prelude () def_sources_begin() {&UpstreamProvider, "https://hub.docker.com/", DelegateToUpstream}, {&DaoCloud, "https://docker.m.daocloud.io", DelegateToMirror}, - {&Fit2Cloud, "https://docker.1panel.live", DelegateToMirror} + {&Fit2Cloud, "https://docker.1panel.live", DelegateToMirror}, + {&Xuanyuan, "https://docker.xuanyuan.me", DelegateToMirror} def_sources_end() }