修剪未使用的 Docker 对象
Docker 采用保守的方法来清理未使用的对象(通常
称为 “垃圾回收”),例如镜像、容器、卷和
网络。除非您明确要求
Docker 执行此操作。这可能会导致 Docker 使用额外的磁盘空间。对于每种类型的
对象,Docker 提供了一个命令。此外,您还可以使用 一次清理多种类型的对象。本主题显示
如何使用这些命令。prune
docker system prune
prune
修剪镜像
该命令允许您清理未使用的镜像。由
default,则仅清理悬空镜像。悬空的镜像
是未标记且未被任何容器引用的容器。要删除
悬空镜像:docker image prune
docker image prune
$ docker image prune
WARNING! This will remove all dangling images.
Are you sure you want to continue? [y/N] y
要删除现有容器未使用的所有镜像,请使用以下标志:-a
$ docker image prune -a
WARNING! This will remove all images without at least one container associated to them.
Are you sure you want to continue? [y/N] y
默认情况下,系统会提示您继续。要绕过提示符,请使用 or 标志。-f
--force
您可以使用带有该标志的筛选表达式来限制修剪哪些镜像。例如,仅考虑创建的超过 24 个的镜像
小时前:--filter
$ docker image prune -a --filter "until=24h"
其他筛选表达式可用。有关更多示例,请参阅 docker image prune
参考。
修剪容器
当您停止容器时,除非您启动了容器,否则它不会自动删除
与国旗。要查看 Docker 主机上的所有容器,包括
停止的容器,请使用 。您可能会惊讶于有多少个容器
存在,尤其是在开发系统上!已停止容器的可写层
仍然占用磁盘空间。要清理此问题,您可以使用命令。--rm
docker ps -a
docker container prune
$ docker container prune
WARNING! This will remove all stopped containers.
Are you sure you want to continue? [y/N] y
默认情况下,系统会提示您继续。要绕过提示符,请使用 or 标志。-f
--force
默认情况下,将删除所有已停止的容器。您可以使用
国旗。例如,以下命令仅删除
停止的容器超过 24 小时:--filter
$ docker container prune --filter "until=24h"
其他筛选表达式可用。有关更多示例,请参阅 docker 容器 prune
参考。
修剪卷
卷可以由一个或多个容器使用,并占用 Docker 上的空间 主机。卷永远不会自动删除,因为这样做可能会破坏 数据。
$ docker volume prune
WARNING! This will remove all volumes not used by at least one container.
Are you sure you want to continue? [y/N] y
默认情况下,系统会提示您继续。要绕过提示符,请使用 or 标志。-f
--force
默认情况下,将删除所有未使用的卷。您可以使用
国旗。例如,以下命令仅删除
未使用标签标记的卷:--filter
keep
$ docker volume prune --filter "label!=keep"
其他筛选表达式可用。有关更多示例,请参阅 docker volume prune
参考。
修剪网络
Docker 网络不会占用太多磁盘空间,但它们会创建规则、桥接网络设备和路由表条目。要清理这些东西
up,可用于清理未使用的网络
通过任何容器。iptables
docker network prune
$ docker network prune
WARNING! This will remove all networks not used by at least one container.
Are you sure you want to continue? [y/N] y
默认情况下,系统会提示您继续。要绕过提示符,请使用 or 标志。-f
--force
默认情况下,将删除所有未使用的网络。您可以使用
国旗。例如,以下命令仅删除
超过 24 小时的网络:--filter
$ docker network prune --filter "until=24h"
其他筛选表达式可用。有关更多示例,请参阅 docker network prune
参考。
修剪所有内容
该命令是修剪镜像、容器、
和网络。默认情况下,不会修剪卷,您必须指定 to prune 卷的标志。docker system prune
--volumes
docker system prune
$ docker system prune
WARNING! This will remove:
- all stopped containers
- all networks not used by at least one container
- all dangling images
- unused build cache
Are you sure you want to continue? [y/N] y
要同时删除卷,请添加以下标志:--volumes
$ docker system prune --volumes
WARNING! This will remove:
- all stopped containers
- all networks not used by at least one container
- all volumes not used by at least one container
- all dangling images
- all build cache
Are you sure you want to continue? [y/N] y
默认情况下,系统会提示您继续。要绕过提示符,请使用 or 标志。-f
--force
默认情况下,将删除所有未使用的容器、网络和镜像。您可以
使用 flag 限制范围。例如,以下命令
删除超过 24 小时的项目:--filter
$ docker system prune --filter "until=24h"
其他筛选表达式可用。有关更多示例,请参阅 docker system prune
参考。