清理 docker registry 的旧镜像,有什么简单的方法吗?

2021-05-25 10:23:03 +08:00
 JasonLaw

找了一圈,没有找到简单的方法。

我具体描述一下我的需求:仓库有四个分支 current_feature, master, pre_production, production,其中 master 跟环境没有任何关系。current_feature 对应 dev 环境,pre_production 对应 pre_production 环境,production 对应 production 环境。镜像的标签是 current_feature-latest, current_feature-{shortCommitHash}, pre_production-latest, pre_production-{shortCommitHash}, production-latest, production-{shortCommitHash}。我想删除掉旧的镜像,包含latest 和shortCommitHash 的镜像。

1689 次点击
所在节点    程序员
5 条回复
Latin
2021-05-25 11:26:30 +08:00
主题应该是批量吧 没描述清楚意思
Puteulanus
2021-05-25 11:32:02 +08:00
https://github.com/andrey-pohilko/registry-cli
https://github.com/ricardobranco777/clean_registry

我们的 registry 用的这俩,自动删除超过 30 天的镜像
Acoffice
2021-05-25 11:35:05 +08:00
```bash
docker image prune -a --filter "until=$(date +'%Y-%m-%dT%H:%M:%S' --date='-15 days')"

```
ShareDuck
2021-05-25 11:40:43 +08:00
我们用的仓库是 Harbor,到目前为止我们都没有删除过仓库里的旧镜像,镜像是分层存储的,占用空间不是很大。系统提供了垃圾清理功能,不知道是不是干这个的。
eudore
2021-05-25 15:52:11 +08:00
写了一个小脚本,每个镜像保留最近 5 个 tag,其他都删除。

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://tanronggui.xyz/t/779025

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX