diff options
author | Anders F Björklund <anders.f.bjorklund@gmail.com> | 2020-11-14 20:10:57 +0100 |
---|---|---|
committer | Anders F Björklund <anders.f.bjorklund@gmail.com> | 2020-11-14 20:18:52 +0100 |
commit | 0dad2499a33e3d76eb4508a52c7449224ee1e10b (patch) | |
tree | 1e70b1a1ff898cfa4f72bbc2b83bfda1a10aade3 /docs/source | |
parent | 738d62ea960af439bd545820e1853cbd73464493 (diff) | |
download | podman-0dad2499a33e3d76eb4508a52c7449224ee1e10b.tar.gz podman-0dad2499a33e3d76eb4508a52c7449224ee1e10b.tar.bz2 podman-0dad2499a33e3d76eb4508a52c7449224ee1e10b.zip |
Add support for volume ls --filter label=key=value
Supposed to be able to search for labels with a given value.
Previously it meant searching for label key and label value:
--filter label=key --filter label=value
Add some documentation and integration tests for it as well.
Signed-off-by: Anders F Björklund <anders.f.bjorklund@gmail.com>
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/markdown/podman-volume-ls.1.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-volume-ls.1.md b/docs/source/markdown/podman-volume-ls.1.md index 98c3fae54..48853bdfd 100644 --- a/docs/source/markdown/podman-volume-ls.1.md +++ b/docs/source/markdown/podman-volume-ls.1.md @@ -40,6 +40,8 @@ $ podman volume ls --format json $ podman volume ls --format "{{.Driver}} {{.Scope}}" $ podman volume ls --filter name=foo,label=blue + +$ podman volume ls --filter label=key=value ``` ## SEE ALSO |