harbor 清理 已通过ui删除的镜像 步骤
- 编写clean-harbor.sh 脚本
# 进入有启动harbor的docker-compose.yml文件的目录
cd /data/harbor
# 停止harbor
docker-compose stop
# 使用清理镜像进行垃圾回收
# 使用--dry-run 参数可进行预览,不使用则进行清理
docker run --name gc --rm --volumes-from registry goharbor/registry-photon:v2.7.1-patch-2819-2553-v1.9.4 garbage-collect -m /etc/registry/config.yml
#重新启动harbor
docker-compose start
- 赋予clean-harbor.sh 执行权限
chmod +x clean-harbor.sh
- 使用crontab 增加定时任务,定时执行clean-harbor.sh脚本
- 编辑crontab 定时任务
crontab -e
- 新增crontab 定时任务(当前设置每天凌晨1点清理harbor镜像)
0 1 * * * /data/harbor/clean-harbor.sh
- 查看定时任务的执行情况
cat /var/spool/mail/root
如觉得通过ui删除镜像太过麻烦,可以通过python脚本在harbor ui删除无用镜像,参考这篇文章:
https://blog.csdn.net/weixin_33875564/article/details/93621719