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?