Docker 批量清除镜像与容器
清理所有停止运行的容器
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
Docker 批量清除镜像与容器
https://guiyunweb.com/archives/docker%E6%B8%85%E9%99%A4%E9%95%9C%E5%83%8F%E4%B8%8E%E5%AE%B9%E5%99%A8