Docker 批量清除镜像与容器-docker清除镜像与容器

93 阅读1分钟

清理所有停止运行的容器

docker container prune 
# or
docker rm $(docker ps -aq)

清理所有悬挂(<none>)镜像:

docker image prune
# or
docker rmi $(docker images -qf "dangling=true")

清理所有无用数据卷

docker volume prune	

清理所有无用镜像

docker image prune -a

清理缓存

docker builder prune

参考网站:creativecommons.org/licenses/by…