Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/recipe/ware/Docker/Docker.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand All @@ -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");
Expand All @@ -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()
}

Expand Down
Loading