陈同学
微服务
Accelerator
About
# 一键清理 Nexus 中无用的 Docker 镜像 现许多团队使用 Nexus 来管理 Docker 镜像,产品不断迭代,镜像仓库占用的磁盘空间也越来越大。由于 Nexus 的控制台并未提供批量操作镜像功能,清理镜像十分不便。本文分享一个清理 Nexus 中 Docker 镜像的小工具 — **nexus-cli**。 可参考 nexus-cli 的相关资料,[nexus-cli GitHub](https://github.com/mlabouardy/nexus-cli)、[开发者博客原文](https://www.blog.labouardy.com/cleanup-old-docker-images-from-nexus-repository/)、[Nexus 官方博客文章](https://blog.sonatype.com/cleanup-old-docker-images-from-nexus-repository)。 下面结合 nexus-cli + sublime 做一个演示。 ## 下载脚本并授权 ```shell wget https://s3.eu-west-2.amazonaws.com/nexus-cli/1.0.0-beta/linux/nexus-cli chmod +x nexus-cli ``` ## 配置待清理的库 ```shell $ nexus-cli configure Enter Nexus Host: http://127.0.0.1:8081 Enter Nexus Repository Name: demo Enter Nexus Username: admin Enter Nexus Password: xxxxxx ``` **http://127.0.0.1:8081** 是 Nexus 服务的地址,为了安全,可以直接在 Nexus 所在的机器处理。 ## 列出所有镜像 ```shell $ nexus-cli image ls oauth-service report-service fund-service ... ``` 这里仅列出三个作为例子。 ## 清理镜像 > nexus-cli image delete -name IMAGE_NAME -keep X,-keep X 表示保留几个tag 清理单个镜像的tag,这里仅保留最新的两个tag ```shell $ nexus-cli image delete -name fund-service -keep 2 fund-service:2018.11.1-113322 image will be deleted ... fund-service:2018.11.1-113322 has been successful deleted fund-service:2018.11.1-145912 image will be deleted ... fund-service:2018.11.1-145912 has been successful deleted ... ``` 清理所有镜像的tag,结合 sublime 的批量处理功能,十分方便。 ![](https://blog-1256695615.cos.ap-shanghai.myqcloud.com/2018/11/04/7e368e4fe6c3497bbd7b19d4c520cd74.gif) ## 清理磁盘空间 最后,创建两个Nexus Task 来清理物理空间。先运行 **Purge unused docker manifests and images**,再运行 **Compact blob store**。 ![](https://blog-1256695615.cos.ap-shanghai.myqcloud.com/2018/11/04/2935d9e85d4d400b88c4fa9a14447f0a.png) 此时,可以查看磁盘目录 **sonatype-work/nexus3/blobs/ ** 的磁盘占用情况。 ```shell $ du -lh --max-depth=1 . | grep demo 2.1G ./demo ``` ## 小结 由于开发测试环境中应用迭代非常频繁,镜像消耗磁盘的速度也非常快。若磁盘空间足够,每隔一定时间手工清理即可;若需要频繁清理,使用脚本自动化处理也十分方便。 文首列举的 **nexus-cli** 的资料中,有 nexus-cli 的更多操作命令,可自行参考。
本文由
cyj
创作,可自由转载、引用,但需署名作者且注明文章出处。
文章标题:
一键清理 Nexus 中无用的 Docker 镜像
文章链接:
https://chenyongjun.vip/articles/85
扫码或搜索 cyjrun 关注微信公众号, 结伴学习, 一起努力