|
@@ -20,7 +20,7 @@ Options:
|
|
|
-f, --filter value Filter output based on conditions provided (default [])
|
|
|
- exited=<int> an exit code of <int>
|
|
|
- label=<key> or label=<key>=<value>
|
|
|
- - status=(created|restarting|running|paused|exited)
|
|
|
+ - status=(created|restarting|removing|running|paused|exited)
|
|
|
- name=<string> a container's name
|
|
|
- id=<ID> a container's ID
|
|
|
- before=(<container-name>|<container-id>)
|
|
@@ -68,7 +68,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|dead)
|
|
|
+* status (created|restarting|running|removing|paused|exited|dead)
|
|
|
* ancestor (`<image-name>[:<tag>]`, `<image id>` or `<image@digest>`) - filters containers that were created from the given image or a descendant.
|
|
|
* before (container's id or name) - filters containers created before given id or name
|
|
|
* since (container's id or name) - filters containers created since given id or name
|
|
@@ -158,7 +158,7 @@ Any of these events result in a `137` status:
|
|
|
#### Status
|
|
|
|
|
|
The `status` filter matches containers by status. You can filter using
|
|
|
-`created`, `restarting`, `running`, `paused`, `exited` and `dead`. For example,
|
|
|
+`created`, `restarting`, `running`, `removing`, `paused`, `exited` and `dead`. For example,
|
|
|
to filter for `running` containers:
|
|
|
|
|
|
```bash
|