0

The docker documentation for docker volume prune mentions

By default, all unused volumes are removed. You can limit the scope using the --filter flag.

For instance, the following command only removes volumes which are not labelled with the keep label:

docker volume prune --filter "label!=keep"

Does this mean that docker volume prune implicitly includes --filter dangling=true unless another filter or flag is specified?

Does this also mean that docker volume prune is actually docker volume prune --filter dangling=true unless another filter or flag is specified?

Wimateeka
  • 2,474
  • 2
  • 16
  • 32
  • 1
    Does this answer your question? [What is a dangling image and what is an unused image?](https://stackoverflow.com/questions/45142528/what-is-a-dangling-image-and-what-is-an-unused-image) – AymDev Dec 02 '22 at 14:30

0 Answers0