docker 使用久了就会在机器上积累不少镜像占用不少空间,若是有 其中镜像的 tag 是 <none> 是有相同 tag 的,若是要一个一个删除很是费劲,可使用命令docker
docker image rm $(docker image ls -qf dangling=true)
将code