It's pretty straight forward to filter out docker volumes using:
docker volume ls --filter "label=something"
However I want to run something like:
docker volume ls --filter "label!=something"'
Some old StackOverflow answers said it's possible but I can't find it anywhere in the Docker docs. I also get this error when I try running the command:
Error response from daemon: Invalid filter 'label!'
Does anyone know a way to do it without using grep and piping?