mirror of
https://github.com/docker/cli.git
synced 2026-01-06 05:41:44 +03:00
Added dead to docs for docker ps -f status=...
It is possible to invoke `docker ps -f status=dead`, but the documentation for docker-ps does not mention `dead` as a valid option. This commit fixes that. Signed-off-by: Kareem Khazem <karkhaz@karkhaz.com>
This commit is contained in:
committed by
Tibor Vass
parent
869890dfbd
commit
e62e6e8b07
@@ -55,7 +55,7 @@ The currently supported filters are:
|
||||
* label (`label=<key>` or `label=<key>=<value>`)
|
||||
* name (container's name)
|
||||
* exited (int - the code of exited containers. Only useful with `--all`)
|
||||
* status (created|restarting|running|paused|exited)
|
||||
* status (created|restarting|running|paused|exited|dead)
|
||||
* ancestor (`<image-name>[:<tag>]`, `<image id>` or `<image@digest>`) - filters containers that were created from the given image or a descendant.
|
||||
* isolation (default|process|hyperv) (Windows daemon only)
|
||||
|
||||
@@ -109,7 +109,7 @@ that have exited successfully:
|
||||
|
||||
#### Status
|
||||
|
||||
The `status` filter matches containers by status. You can filter using `created`, `restarting`, `running`, `paused` and `exited`. For example, to filter for `running` containers:
|
||||
The `status` filter matches containers by status. You can filter using `created`, `restarting`, `running`, `paused`, `exited` and `dead`. For example, to filter for `running` containers:
|
||||
|
||||
$ docker ps --filter status=running
|
||||
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
||||
|
||||
Reference in New Issue
Block a user