Skip to content

清理Docker磁盘占用

docker 在构建镜像时会产生缓存文件。如果构建的镜像过大,可能会因为缓存堆积导致磁盘空间用尽。

查看docker磁盘使用情况:docker system df

清理docker占用的磁盘空间:docker system prune

清理docker构建缓存:docker builder prune

docker system prune会清理如下内容:

bash
  - all stopped containers
  - all networks not used by at least one container
  - all dangling images
  - all dangling build cache