diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-06-21 18:19:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 18:19:16 +0000 |
commit | 8863e13dc3248eaca1cd35359416166e896578f2 (patch) | |
tree | d4784d2a957e4936a73871df0d5b3d9e17c7aed1 /docs | |
parent | c9dce6353d780e249f8a1c3ab8c47f3df83ec679 (diff) | |
parent | 4a981c490be01547c17fb0b1fc4d1c3bfbf3551e (diff) | |
download | podman-8863e13dc3248eaca1cd35359416166e896578f2.tar.gz podman-8863e13dc3248eaca1cd35359416166e896578f2.tar.bz2 podman-8863e13dc3248eaca1cd35359416166e896578f2.zip |
Merge pull request #14643 from clobrano/feature/network/list/dangling/dev
allow filter networks by dangling status
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-network-ls.1.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-network-ls.1.md b/docs/source/markdown/podman-network-ls.1.md index b341083f9..3c696d404 100644 --- a/docs/source/markdown/podman-network-ls.1.md +++ b/docs/source/markdown/podman-network-ls.1.md @@ -25,6 +25,7 @@ Supported filters: | label | Filter by network with (or without, in the case of label!=[...] is used) the specified labels. | | name | Filter by network name (accepts `regex`). | | until | Filter by networks created before given timestamp. | +| dangling | Filter by networks with no containers attached. | The `driver` filter accepts values: `bridge`, `macvlan`, `ipvlan`. @@ -33,6 +34,8 @@ The `label` *filter* accepts two formats. One is the `label`=*key* or `label`=*k The `until` *filter* can be Unix timestamps, date formatted timestamps, or Go duration strings (e.g. 10m, 1h30m) computed relative to the machine’s time. +The `dangling` *filter* accepts values `true` or `false`. + #### **--format**=*format* Change the default output format. This can be of a supported type like 'json' |