docker批量删除镜像

批量删除包含test的镜像

docker rmi --force $(docker images | grep test | awk '{print $3}')

你可能感兴趣的:(docker)