通过docker image repository 获取docker imges id 并删除
Posted sjptech
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过docker image repository 获取docker imges id 并删除相关的知识,希望对你有一定的参考价值。
docker images | grep -E "xxxxx" | awk ‘{print $3}‘ | uniq | xargs -I {} docker rmi --force {}
注释:
docker images 获取所有images
grep -E "xxxxx" 筛选到特定的images
awk ‘ {print $3}’ 打印第三列 即image id列
uniq 检查及删除文本文件中重复出现的行列
xargs -I {} 多行转单行
docker rmi --force {} 删除所有指定id
以上是关于通过docker image repository 获取docker imges id 并删除的主要内容,如果未能解决你的问题,请参考以下文章