如何批量删除doker在构建时产生的一些中间镜像?


在写好 Dockerfile ,使用命令构建镜像:


 docker build -t pm-service:1.0 .

构建完成之后,使用 docker images 会看到一些 REPOSITORY TAG 都为 <none> 都镜像。我有两个问题:

  1. 如何批量删除这些镜像?
  2. 有没有办法在构建时避免产生这些中间镜像?

谢谢各位。

docker java

白河·小鸟 9 years, 11 months ago

--rm=true Remove intermediate containers after a successful build

看看这个参数能解决你的问题吗,docker build 的一个参数.

简单.LB answered 9 years, 11 months ago

Your Answer