私信  •  关注

Peter Mortensen Innocent Anigb

Peter Mortensen Innocent Anigb 最近创建的主题
Peter Mortensen Innocent Anigb 最近回复了
5 年前
回复了 Peter Mortensen Innocent Anigb 创建的主题 » 本地Docker注册表卷被本地映像100%使用,如何从中释放空间?

如果要删除已拉取的图像 几个月前,您可以尝试以下示例删除三个月前创建的图像:

three_months_old_images=`docker images | grep -vi "<none>" | tr -s ' ' | cut -d" " -f3,4,5,6 | grep "3 months ago" | cut -d" " -f1`
docker rmi $three_months_old_images