docker镜像仓库迁移

Docker镜像迁移我们使用的工具是syncer,项目地址:https://github.com/MR5356/syncer , 并且这个工具支持多对多的镜像仓库迁移

安装syncer

通过下载对应系统的二进制文件进行安装:点击下载

也可以通过源码进行安装,前提是有golang运行环境:

shell 复制代码
git clone https://github.com/MR5356/syncer.git
cd syncer
make all

使用syncer进行镜像迁移

安装成功后可以使用以下命令获取命令的help信息:

shell 复制代码
[root@toodo ~] ./syncer -h

Usage:
  syncer [command]

Available Commands:
  completion  Generate the autocompletion script for the specified shell
  git         A git repo sync tool
  help        Help about any command
  image       A registry image sync tool

Flags:
  -d, --debug     enable debug mode
  -h, --help      help for syncer
  -v, --version   version for syncer

Use "syncer [command] --help" for more information about a command.
shell 复制代码
[root@toodo ~] ./syncer image -h

A registry image sync tool implement by Go.

Complete code is available at https://github.com/Mr5356/syncer

Usage:
  syncer image [flags]

Flags:
  -c, --config string   config file path
  -d, --debug           enable debug mode
  -h, --help            help for image
  -p, --proc int        process num (default 10)
  -r, --retries int     retries num (default 3)
  -v, --version         version for image

配置文件支持yaml格式和json格式,以yaml格式为例:

yaml 复制代码
# 仓库认证信息
auth:
  registry.cn-hangzhou.aliyuncs.com:
    username: your_name
    password: your_password
    # http仓库可设置为true
    insecure: false
  docker.io:
    username: your_name
    password: your_password
    insecure: false
# 镜像同步任务列表
images:
  # 该镜像的所有标签将会进行同步
  registry.cn-hangzhou.aliyuncs.com/toodo/alpine: registry.cn-hangzhou.aliyuncs.com/toodo/test
  # 该镜像会同步到目标仓库,并使用新的tag
  alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5: registry.cn-hangzhou.aliyuncs.com/toodo/test:alpine-latest
  # 该镜像会同步至多个目标仓库,如果目标镜像没有填写tag,将会使用源镜像tag
  alpine:latest:
    - hub1.test.com/library/alpine
    - hub2.test.com/library/alpine
# 最大并行数量
proc: 3
# 最大失败重试次数
retries: 3

使用配置文件运行镜像迁移工具开始镜像迁移:

shell 复制代码
[root@toodo ~] ./syncer image -c config.yaml
相关推荐
景天科技苑9 分钟前
【云原生开发】K8S多集群资源管理平台架构设计
云原生·容器·kubernetes·k8s·云原生开发·k8s管理系统
萨格拉斯救世主22 分钟前
戴尔R930服务器增加 Intel X710-DA2双万兆光口含模块
运维·服务器
Jtti24 分钟前
Windows系统服务器怎么设置远程连接?详细步骤
运维·服务器·windows
yeyuningzi38 分钟前
Debian 12环境里部署nginx步骤记录
linux·运维·服务器
wclass-zhengge1 小时前
K8S篇(基本介绍)
云原生·容器·kubernetes
颜淡慕潇1 小时前
【K8S问题系列 |1 】Kubernetes 中 NodePort 类型的 Service 无法访问【已解决】
后端·云原生·容器·kubernetes·问题解决
EasyCVR1 小时前
萤石设备视频接入平台EasyCVR多品牌摄像机视频平台海康ehome平台(ISUP)接入EasyCVR不在线如何排查?
运维·服务器·网络·人工智能·ffmpeg·音视频
wowocpp2 小时前
ubuntu 22.04 硬件配置 查看 显卡
linux·运维·ubuntu
萨格拉斯救世主3 小时前
jenkins使用slave节点进行node打包报错问题处理
运维·jenkins
川石课堂软件测试3 小时前
性能测试|docker容器下搭建JMeter+Grafana+Influxdb监控可视化平台
运维·javascript·深度学习·jmeter·docker·容器·grafana