跳转至

Docker 资源清理

概要: 使用 docker prune 命令清理系统Docker相关资源

创建时间: 2022.10.01 23:37:13

更新时间: 2023.08.03 00:55:31

清理没有打 tag 的镜像

Bash
docker image prune
image.png

清理未被容器使用的镜像

Bash
docker image prune -a
image.png

清理所有已停止的容器

Bash
docker container prune
image.png

清理所有未挂载的卷

Bash
docker volume prune
image.png

清理所有网络

Bash
docker network prune
image.png

清理Docker所有资源

Bash
docker system prune
image.png

参考