Docker 国内镜像源

embedded/2025/1/23 15:48:20/

目录

概述

步骤

参考资料


概述

自 2024-06-06 开始,阿里,腾讯、中科大等国内的 Docker Hub 镜像加速器相继停止服务,总结了网友整理出来一些其他国内 Docker Hub 镜像源,经过测试可以使用。

步骤

  • 配置 Docker 守护程序

修改 /etc/docker/daemon.json 文件,修改其中的 registry-mirrors 参数的值为如下:

{"registry-mirrors": ["https://hub.uuuadc.top","https://docker.anyhub.us.kg","https://dockerhub.jobcher.com","https://docker.ckyl.me","https://docker.awsl9527.cn","https://ustc-edu-cn.mirror.aliyuncs.com/","https://ccr.ccs.tencentyun.com/","https://2a6bf1988cb6428c877f723ec7530dbc.mirror.swr.myhuaweicloud.com","https://hub-mirror.c.163.com","https://your_preferred_mirror","https://dockerhub.icu","https://docker.registry.cyou","https://docker-cf.registry.cyou","https://dockercf.jsdelivr.fyi","https://docker.jsdelivr.fyi","https://dockertest.jsdelivr.fyi","https://mirror.aliyuncs.com","https://dockerproxy.com","https://mirror.baidubce.com","https://docker.m.daocloud.io","https://docker.nju.edu.cn","https://docker.mirrors.sjtug.sjtu.edu.cn","https://docker.mirrors.ustc.edu.cn","https://mirror.iscas.ac.cn","https://docker.rainbond.cc"]
}

 重启Docker

# 重新加载 Systemd 配置
systemctl daemon-reload# 重新启动 Docker 服务
systemctl restart docker

参考资料

  • Mirror | Docker Docs
  • DockerHub国内镜像源列表(2024年6月18日 亲测可用) - 资源荟萃 - LINUX DO

http://www.ppmy.cn/embedded/156334.html

相关文章

Kubectl常用命令操作

kubectl 命令格式: kubectl command type name command:表示子命令,用于操作kubernetes的集群资源对象,如:create delete describe get apply type:资源对象的类型 name:资源对象的名称 1.创建资源对象 kubectl create -f my…

Blazor-Blazor WebAssmbly项目结构(上)

创建项目 今天我们来创建一个BlazorWebAssmbly项目,来看看项目结构是如何得,我们创建带模板得项目,会创建出一个demo,来看看项目结构。 创建的项目可以直接启动运行,首次启动会看见加载的过程,这个过程…

自定义BeanPostProcessor实现自动注入标注了特定注解的Bean

定义注解 Target({ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD}) Retention(RetentionPolicy.RUNTIME) Documented public interface MyAnno { }定义一个配置类 Configuration public class RestConfig {MyAnnoBeanpublic PayDTO payDTO(){PayDTO payDTO …

mikrotik7配置内网到内网的lantolan

lan to lan又称site to site,在前面的文章已经配置wireguard实现单个ip互访,这期来实现lan to lan 客户端依然使用windows。本期在上一篇基础上增加配置 一、LAN to LAN配置 windows客户端修改 我的第一个内网网段是192.168.11.0/24,以下为相关修改 …

詳細講一下在RN(ReactNative)中,6個比較常用的組件以及詳細的用法

1.View 组件&#xff08;基础容器&#xff09; import { View, StyleSheet } from react-native;const MyComponent () > {return (<View style{styles.container} // 样式pointerEvents"none" // 控制触摸事件&#xff1a;none, box-none, box-only, …

(2025,BioLM,综述)用于生物信息学的 LLM

Large Language Models for Bioinformatics 目录 0. 摘要 1. 引言 2. 生物信息学中语言模型与基础模型的背景 2.1 语言模型与生物信息学基础概述 2.1.1 LLM 与基础模型 2.1.2 生物信息学的应用与挑战 2.2 训练方法与模型 2.2.1 预训练 2.2.2 RLHF 2.2.3 知识蒸馏 …

政府机构如何使用六西格玛来提高效率和提供更好的服务

联邦机构面临着改善运作、降低成本和确保向公民提供高质量服务的巨大压力。六西格玛方法与Minitab强大的工具相结合&#xff0c;使政府组织能够充满信心地应对这些挑战。通过简化流程、减少浪费和改进决策&#xff0c;政府团队可以提供真正有影响力的服务。 六西格玛如何改善政…

OFD 套版生成原理与 C# 实现详解

1. 引言 OFD&#xff08;Open Fixed-layout Document&#xff09;是一种基于 XML 的开放版式文档格式&#xff0c;主要用于电子文档的存储和交换。与 PDF 类似&#xff0c;OFD 是一种固定版式文档格式&#xff0c;能够确保文档在不同设备和平台上显示的一致性。OFD 格式广泛应…