mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #11968 from thaJeztah/docs-fix-bullets-and-labels-filter
docs: fix bullet list and missing label filter
This commit is contained in:
commit
fb1e10284b
1 changed files with 12 additions and 9 deletions
|
@ -986,7 +986,7 @@ Using multiple filters will be handled as a *AND*; for example
|
||||||
`--filter container=588a23dac085 --filter event=start` will display events for container
|
`--filter container=588a23dac085 --filter event=start` will display events for container
|
||||||
container 588a23dac085 *AND* the event type is *start*
|
container 588a23dac085 *AND* the event type is *start*
|
||||||
|
|
||||||
Current filters:
|
The currently supported filters are:
|
||||||
|
|
||||||
* container
|
* container
|
||||||
* event
|
* event
|
||||||
|
@ -1233,9 +1233,10 @@ also reference by digest in `create`, `run`, and `rmi` commands, as well as the
|
||||||
The filtering flag (`-f` or `--filter`) format is of "key=value". If there is more
|
The filtering flag (`-f` or `--filter`) format is of "key=value". If there is more
|
||||||
than one filter, then pass multiple flags (e.g., `--filter "foo=bar" --filter "bif=baz"`)
|
than one filter, then pass multiple flags (e.g., `--filter "foo=bar" --filter "bif=baz"`)
|
||||||
|
|
||||||
Current filters:
|
The currently supported filters are:
|
||||||
* dangling (boolean - true or false)
|
|
||||||
* label (`label=<key>` or `label=<key>=<value>`)
|
* dangling (boolean - true or false)
|
||||||
|
* label (`label=<key>` or `label=<key>=<value>`)
|
||||||
|
|
||||||
##### Untagged images
|
##### Untagged images
|
||||||
|
|
||||||
|
@ -1584,11 +1585,13 @@ Running `docker ps --no-trunc` showing 2 linked containers.
|
||||||
The filtering flag (`-f` or `--filter)` format is a `key=value` pair. If there is more
|
The filtering flag (`-f` or `--filter)` format is a `key=value` pair. If there is more
|
||||||
than one filter, then pass multiple flags (e.g. `--filter "foo=bar" --filter "bif=baz"`)
|
than one filter, then pass multiple flags (e.g. `--filter "foo=bar" --filter "bif=baz"`)
|
||||||
|
|
||||||
Current filters:
|
The currently supported filters are:
|
||||||
* id (container's id)
|
|
||||||
* name (container's name)
|
* id (container's id)
|
||||||
* exited (int - the code of exited containers. Only useful with '--all')
|
* label (`label=<key>` or `label=<key>=<value>`)
|
||||||
* status (restarting|running|paused|exited)
|
* name (container's name)
|
||||||
|
* exited (int - the code of exited containers. Only useful with `--all`)
|
||||||
|
* status (restarting|running|paused|exited)
|
||||||
|
|
||||||
##### Successfully exited containers
|
##### Successfully exited containers
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue