当前位置: 首页 > article >正文

2025最新 Docker 国内可用镜像源仓库地址(01月02日更新)

1. 添加docker镜像地址

使用编辑器打开配置文件 /etc/docker/daemon.json(如果没有该文件,可以新建一个)

2. vi daemon.json, 写入以下内容

{
  "builder": {
    "gc": {
      "defaultKeepStorage": "20GB",
      "enabled": true
    }
  },
  "experimental": false,
  "registry-mirrors": [
    "https://docker.hpcloud.cloud",
    "https://docker.m.daocloud.io",
    "https://docker.unsee.tech",
    "https://docker.1panel.live",
    "http://mirrors.ustc.edu.cn",
    "https://docker.chenby.cn",
    "http://mirror.azure.cn",
    "https://dockerpull.org",
    "https://dockerhub.icu",
    "https://hub.rat.dev",
    "https://proxy.1panel.live",
    "https://docker.1panel.top",
    "https://docker.m.daocloud.io",
    "https://docker.1ms.run",
    "https://docker.ketches.cn"
  ]
}

3. 重启docker服务

sudo systemctl daemon-reload
sudo systemctl restart docker

4. 检查是否成功

拉取下flink镜像试试,docker pull flink

[root@localhost docker]# docker pull flink
Using default tag: latest
latest: Pulling from library/flink
6414378b6477: Pull complete
2c9f253e30bf: Pull complete
65c8233e39bf: Pull complete
b59d22db63f3: Pull complete
b80a9c727cee: Pull complete
da3337ead35a: Pull complete
53e543b721f9: Pull complete
ecebf073acfb: Pull complete
21be4ec89742: Pull complete
f71629a01e27: Pull complete
cc4f5f48c9f1: Pull complete
Digest: sha256:2ec7f6d5591444334f63b66ddd49c7ae02551cb0a27c0988790fa43caa49716f
Status: Downloaded newer image for flink:latest
docker.io/library/flink:latest
[root@localhost docker]#

搞定,奥利给~
参看了这篇文章:https://zhuanlan.zhihu.com/p/15994162505


http://www.kler.cn/a/521179.html

相关文章:

  • 基于物联网的智能环境监测系统(论文+源码)
  • Vue3 v-bind 和 v-model 对比
  • unity商店插件A* Pathfinding Project如何判断一个点是否在导航网格上?
  • 微信小程序中实现进入页面时数字跳动效果(自定义animate-numbers组件)
  • 多模态论文笔记——TECO
  • C++封装红黑树实现mymap和myset和模拟实现详解
  • 【UE】Level、World
  • Android AutoMotive--CarPropertyService
  • AIGC专栏18——EasyAnimateV5.1版本详解 应用Qwen2 VL作为文本编码器,支持轨迹控制与相机镜头控制
  • 【WebRTC - STUN/TURN服务 - COTURN配置】
  • Linux二进制部署K8s集群的平滑升级教程
  • uniapp版本升级
  • 菜鸟开发之多表联合增删改
  • Crewai框架添加日志功能
  • GD32F470 USB虚拟串口
  • Day40:列表的排序
  • python 变量范围的定义与用法
  • 汽车网络信息安全-ISO/SAE 21434解析(中)
  • 拖拽移动(Semi Design)
  • 《一起做很甜的梦!》
  • sqlite3 学习笔记
  • 数据分箱 baggingboosting onehot独热编码 woe编码 sklearn的ensemble(集成学习)
  • python:taichi 高性能可视化 Demo 展览
  • 基于SpringBoot的母婴护理知识共享管理系统
  • 代码随想录算法【Day32】
  • Go中的Context(上下文)