golang 上传离线tar/gz镜像文件至Harbor仓库

hello,今天和大家分享个小工具 (^_^)

在实际业务场景中,通常我们提交docker镜像,通过 docker push 命令来发布至远程仓库中,但这种方式需要本地环境中存在要发布的镜像文件,比如 alpine:3.8 我要提交 docker push 仓库名称/alpine:3.8

如果有较多镜像已经通过 docker save 方式另存到了另外的文件系统中, 我们要把这些镜像发布到远程仓库中,那发布的过程是非常的繁琐。

针对这个业务场景,Fork了 silenceper/docker-tar-push 项目,二次研发后将我们业务需求实现。 有这种需求的小伙伴,欢迎用起来呀~~

docker-tar-push github仓库地址:github.com/hltfaith/do...

docker-tar-push命令下载地址:github.com/hltfaith/do...

功能

  • 支持gz格式的image
  • 支持对image增加前缀repo
  • 支持上传harbor

使用

shell 复制代码
$ docker-tar-push -h
push your docker tar archive image without docker.

Usage:
  docker-tar-push [flags]

Flags:
  -h, --help                  help for docker-tar-push
      --image-prefix string   add image repo prefix
      --log-level int         log-level, 0:Fatal,1:Error,2:Warn,3:Info,4:Debug (default 3)
      --password string       registry auth password
      --registry string       registry url
      --skip-ssl-verify       skip ssl verify
      --username string       registry auth username

用法一

shell 复制代码
docker-tar-push alpine:latest --registry=http://localhost:5000

用法二

例如将 docker save python:3.0 > python-3.10.tar 镜像文件推送harbor仓库, 这时需要存放至 harbor仓库 library 项目中,使用下面参数 --image-prefix=library/ 即可。

shell 复制代码
docker-tar-push /镜像目录路径 --registry=http://harbor.harbor.svc --username=admin --password=Harbor12345 --image-prefix=library/

当我们从仓库下载镜像时,它的完整名称为: docker pull harbor.harbor.svc/library/python:3.0

编译

shell 复制代码
go build -o bin/docker-tar-push cmd/docker-tar-push/main.go

技术文章持续更新,请大家多多关注呀~~

搜索微信公众号,关注我【 帽儿山的枪手 】

相关推荐
bloglin999998 小时前
启动容器报错ls: cannot access ‘/docker-entrypoint-initdb.d/‘: Operation not permitted
docker·容器·eureka
songjxin9 小时前
离线部署kubernetes v1.34.3
云原生·容器·kubernetes
yBmZlQzJ10 小时前
免费内网穿透-端口转发配置介绍
运维·经验分享·docker·容器·1024程序员节
JH307310 小时前
docker 新手入门:10分钟搞定基础使用
运维·docker·容器
天河归来11 小时前
在本地windows电脑使用Docker搭建xinference环境
docker·语言模型·容器
算力魔方AIPC12 小时前
使用 Docker 一键部署 PaddleOCR-VL: 新手保姆级教程
运维·docker·容器
熊出没12 小时前
Kubernetes 实操命令大全
云原生·容器·kubernetes
Ghost Face...13 小时前
Docker实战:从安装到多容器编排指南
运维·docker·容器
宾燕哥哥14 小时前
Go 语言基础学习文档
go
Way2top14 小时前
Go语言动手写Web框架 - Gee第一天
go