mirror of https://github.com/docker/cli.git
Filter containers by status.
A continuation of #7616. Adds `docker ps --filter=status=(restarting|running|paused|stopped)` option. Docker-DCO-1.1-Signed-off-by: Jessica Frazelle <jess@docker.com> (github: jfrazelle)
This commit is contained in:
parent
1d2bb271ac
commit
5419043a5d
|
@ -241,14 +241,15 @@ as the root. Wildcards are allowed but the search is not recursive.
|
|||
temp?
|
||||
|
||||
The first line above `*/temp*`, would ignore all files with names starting with
|
||||
`temp` from any subdirectory below the root directory, for example file named
|
||||
`/somedir/temporary.txt` will be ignored. The second line `*/*/temp*`, will
|
||||
`temp` from any subdirectory below the root directory. For example, a file named
|
||||
`/somedir/temporary.txt` would be ignored. The second line `*/*/temp*`, will
|
||||
ignore files starting with name `temp` from any subdirectory that is two levels
|
||||
below the root directory, for example a file `/somedir/subdir/temporary.txt` is
|
||||
ignored in this case. The last line in the above example `temp?`, will ignore
|
||||
the files that match the pattern from the root directory, for example files
|
||||
`tempa`, `tempb` are ignored from the root directory. Currently there is no
|
||||
support for regular expressions, formats like `[^temp*]` are ignored.
|
||||
below the root directory. For example, the file `/somedir/subdir/temporary.txt`
|
||||
would get ignored in this case. The last line in the above example `temp?`
|
||||
will ignore the files that match the pattern from the root directory.
|
||||
For example, the files `tempa`, `tempb` are ignored from the root directory.
|
||||
Currently there is no support for regular expressions. Formats
|
||||
like `[^temp*]` are ignored.
|
||||
|
||||
|
||||
See also:
|
||||
|
@ -943,6 +944,7 @@ further details.
|
|||
--before="" Show only container created before Id or Name, include non-running ones.
|
||||
-f, --filter=[] Provide filter values. Valid filters:
|
||||
exited=<int> - containers with exit code of <int>
|
||||
status=(restarting|running|paused|exited)
|
||||
-l, --latest=false Show only the latest created container, include non-running ones.
|
||||
-n=-1 Show n last created containers, include non-running ones.
|
||||
--no-trunc=false Don't truncate output
|
||||
|
|
Loading…
Reference in New Issue