mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
Merge pull request #25019 from vmsh0/docs-initialized-state
docs: add 'initialized' state to status filters
This commit is contained in:
@ -28,21 +28,21 @@ Filters with the same key work inclusive with the only exception being
|
|||||||
|
|
||||||
Valid filters are listed below:
|
Valid filters are listed below:
|
||||||
|
|
||||||
| **Filter** | **Description** |
|
| **Filter** | **Description** |
|
||||||
|------------|----------------------------------------------------------------------------------|
|
|------------|-------------------------------------------------------------------------------------------------|
|
||||||
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
||||||
| name | [Name] Container's name (accepts regex) |
|
| name | [Name] Container's name (accepts regex) |
|
||||||
| label | [Key] or [Key=Value] Label assigned to a container |
|
| label | [Key] or [Key=Value] Label assigned to a container |
|
||||||
| exited | [Int] Container's exit code |
|
| exited | [Int] Container's exit code |
|
||||||
| status | [Status] Container's status: 'created', 'exited', 'paused', 'running', 'unknown' |
|
| status | [Status] Container's status: 'created', 'initialized', 'exited', 'paused', 'running', 'unknown' |
|
||||||
| ancestor | [ImageName] Image or descendant used to create container |
|
| ancestor | [ImageName] Image or descendant used to create container |
|
||||||
| before | [ID] or [Name] Containers created before this container |
|
| before | [ID] or [Name] Containers created before this container |
|
||||||
| since | [ID] or [Name] Containers created since this container |
|
| since | [ID] or [Name] Containers created since this container |
|
||||||
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
||||||
| health | [Status] healthy or unhealthy |
|
| health | [Status] healthy or unhealthy |
|
||||||
| pod | [Pod] name or full or partial ID of pod |
|
| pod | [Pod] name or full or partial ID of pod |
|
||||||
| network | [Network] name or full ID of network |
|
| network | [Network] name or full ID of network |
|
||||||
| until | [DateTime] container created before the given duration or time. |
|
| until | [DateTime] Containers created before the given duration or time. |
|
||||||
|
|
||||||
@@option latest
|
@@option latest
|
||||||
|
|
||||||
|
@ -45,22 +45,22 @@ Filters with the same key work inclusive with the only exception being
|
|||||||
|
|
||||||
Valid filters are listed below:
|
Valid filters are listed below:
|
||||||
|
|
||||||
| **Filter** | **Description** |
|
| **Filter** | **Description** |
|
||||||
|------------|----------------------------------------------------------------------------------|
|
|------------|-------------------------------------------------------------------------------------------------|
|
||||||
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
||||||
| name | [Name] Container's name (accepts regex) |
|
| name | [Name] Container's name (accepts regex) |
|
||||||
| label | [Key] or [Key=Value] Label assigned to a container |
|
| label | [Key] or [Key=Value] Label assigned to a container |
|
||||||
| label! | [Key] or [Key=Value] Label NOT assigned to a container |
|
| label! | [Key] or [Key=Value] Label NOT assigned to a container |
|
||||||
| exited | [Int] Container's exit code |
|
| exited | [Int] Container's exit code |
|
||||||
| status | [Status] Container's status: 'created', 'exited', 'paused', 'running', 'unknown' |
|
| status | [Status] Container's status: 'created', 'initialized', 'exited', 'paused', 'running', 'unknown' |
|
||||||
| ancestor | [ImageName] Image or descendant used to create container (accepts regex) |
|
| ancestor | [ImageName] Image or descendant used to create container (accepts regex) |
|
||||||
| before | [ID] or [Name] Containers created before this container |
|
| before | [ID] or [Name] Containers created before this container |
|
||||||
| since | [ID] or [Name] Containers created since this container |
|
| since | [ID] or [Name] Containers created since this container |
|
||||||
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
||||||
| health | [Status] healthy or unhealthy |
|
| health | [Status] healthy or unhealthy |
|
||||||
| pod | [Pod] name or full or partial ID of pod |
|
| pod | [Pod] name or full or partial ID of pod |
|
||||||
| network | [Network] name or full ID of network |
|
| network | [Network] name or full ID of network |
|
||||||
| until | [DateTime] container created before the given duration or time. |
|
| until | [DateTime] container created before the given duration or time. |
|
||||||
|
|
||||||
|
|
||||||
#### **--format**=*format*
|
#### **--format**=*format*
|
||||||
|
@ -31,21 +31,21 @@ Filters with the same key work inclusive with the only exception being
|
|||||||
|
|
||||||
Valid filters are listed below:
|
Valid filters are listed below:
|
||||||
|
|
||||||
| **Filter** | **Description** |
|
| **Filter** | **Description** |
|
||||||
|------------|----------------------------------------------------------------------------------|
|
|------------|-------------------------------------------------------------------------------------------------|
|
||||||
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
||||||
| name | [Name] Container's name (accepts regex) |
|
| name | [Name] Container's name (accepts regex) |
|
||||||
| label | [Key] or [Key=Value] Label assigned to a container |
|
| label | [Key] or [Key=Value] Label assigned to a container |
|
||||||
| exited | [Int] Container's exit code |
|
| exited | [Int] Container's exit code |
|
||||||
| status | [Status] Container's status: 'created', 'exited', 'paused', 'running', 'unknown' |
|
| status | [Status] Container's status: 'created', 'initialized', 'exited', 'paused', 'running', 'unknown' |
|
||||||
| ancestor | [ImageName] Image or descendant used to create container |
|
| ancestor | [ImageName] Image or descendant used to create container |
|
||||||
| before | [ID] or [Name] Containers created before this container |
|
| before | [ID] or [Name] Containers created before this container |
|
||||||
| since | [ID] or [Name] Containers created since this container |
|
| since | [ID] or [Name] Containers created since this container |
|
||||||
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
||||||
| health | [Status] healthy or unhealthy |
|
| health | [Status] healthy or unhealthy |
|
||||||
| pod | [Pod] name or full or partial ID of pod |
|
| pod | [Pod] name or full or partial ID of pod |
|
||||||
| network | [Network] name or full ID of network |
|
| network | [Network] name or full ID of network |
|
||||||
| until | [DateTime] Containers created before the given duration or time. |
|
| until | [DateTime] Containers created before the given duration or time. |
|
||||||
|
|
||||||
@@option latest
|
@@option latest
|
||||||
|
|
||||||
|
@ -35,21 +35,21 @@ Filters with the same key work inclusive with the only exception being
|
|||||||
|
|
||||||
Valid filters are listed below:
|
Valid filters are listed below:
|
||||||
|
|
||||||
| **Filter** | **Description** |
|
| **Filter** | **Description** |
|
||||||
|------------|----------------------------------------------------------------------------------|
|
|------------|-------------------------------------------------------------------------------------------------|
|
||||||
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
||||||
| name | [Name] Container's name (accepts regex) |
|
| name | [Name] Container's name (accepts regex) |
|
||||||
| label | [Key] or [Key=Value] Label assigned to a container |
|
| label | [Key] or [Key=Value] Label assigned to a container |
|
||||||
| exited | [Int] Container's exit code |
|
| exited | [Int] Container's exit code |
|
||||||
| status | [Status] Container's status: 'created', 'exited', 'paused', 'running', 'unknown' |
|
| status | [Status] Container's status: 'created', 'initialized', 'exited', 'paused', 'running', 'unknown' |
|
||||||
| ancestor | [ImageName] Image or descendant used to create container |
|
| ancestor | [ImageName] Image or descendant used to create container |
|
||||||
| before | [ID] or [Name] Containers created before this container |
|
| before | [ID] or [Name] Containers created before this container |
|
||||||
| since | [ID] or [Name] Containers created since this container |
|
| since | [ID] or [Name] Containers created since this container |
|
||||||
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
||||||
| health | [Status] healthy or unhealthy |
|
| health | [Status] healthy or unhealthy |
|
||||||
| pod | [Pod] name or full or partial ID of pod |
|
| pod | [Pod] name or full or partial ID of pod |
|
||||||
| network | [Network] name or full ID of network |
|
| network | [Network] name or full ID of network |
|
||||||
| until | [DateTime] Containers created before the given duration or time. |
|
| until | [DateTime] Containers created before the given duration or time. |
|
||||||
|
|
||||||
#### **--force**, **-f**
|
#### **--force**, **-f**
|
||||||
|
|
||||||
|
@ -36,21 +36,21 @@ Filters with the same key work inclusive with the only exception being
|
|||||||
|
|
||||||
Valid filters are listed below:
|
Valid filters are listed below:
|
||||||
|
|
||||||
| **Filter** | **Description** |
|
| **Filter** | **Description** |
|
||||||
|------------|----------------------------------------------------------------------------------|
|
|------------|-------------------------------------------------------------------------------------------------|
|
||||||
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
||||||
| name | [Name] Container's name (accepts regex) |
|
| name | [Name] Container's name (accepts regex) |
|
||||||
| label | [Key] or [Key=Value] Label assigned to a container |
|
| label | [Key] or [Key=Value] Label assigned to a container |
|
||||||
| exited | [Int] Container's exit code |
|
| exited | [Int] Container's exit code |
|
||||||
| status | [Status] Container's status: 'created', 'exited', 'paused', 'running', 'unknown' |
|
| status | [Status] Container's status: 'created', 'initialized', 'exited', 'paused', 'running', 'unknown' |
|
||||||
| ancestor | [ImageName] Image or descendant used to create container |
|
| ancestor | [ImageName] Image or descendant used to create container |
|
||||||
| before | [ID] or [Name] Containers created before this container |
|
| before | [ID] or [Name] Containers created before this container |
|
||||||
| since | [ID] or [Name] Containers created since this container |
|
| since | [ID] or [Name] Containers created since this container |
|
||||||
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
||||||
| health | [Status] healthy or unhealthy |
|
| health | [Status] healthy or unhealthy |
|
||||||
| pod | [Pod] name or full or partial ID of pod |
|
| pod | [Pod] name or full or partial ID of pod |
|
||||||
| network | [Network] name or full ID of network |
|
| network | [Network] name or full ID of network |
|
||||||
| until | [DateTime] Containers created before the given duration or time. |
|
| until | [DateTime] Containers created before the given duration or time. |
|
||||||
|
|
||||||
@@option interactive
|
@@option interactive
|
||||||
|
|
||||||
|
@ -34,21 +34,21 @@ Filters with the same key work inclusive with the only exception being
|
|||||||
|
|
||||||
Valid filters are listed below:
|
Valid filters are listed below:
|
||||||
|
|
||||||
| **Filter** | **Description** |
|
| **Filter** | **Description** |
|
||||||
|------------|----------------------------------------------------------------------------------|
|
|------------|-------------------------------------------------------------------------------------------------|
|
||||||
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
||||||
| name | [Name] Container's name (accepts regex) |
|
| name | [Name] Container's name (accepts regex) |
|
||||||
| label | [Key] or [Key=Value] Label assigned to a container |
|
| label | [Key] or [Key=Value] Label assigned to a container |
|
||||||
| exited | [Int] Container's exit code |
|
| exited | [Int] Container's exit code |
|
||||||
| status | [Status] Container's status: 'created', 'exited', 'paused', 'running', 'unknown' |
|
| status | [Status] Container's status: 'created', 'initialized', 'exited', 'paused', 'running', 'unknown' |
|
||||||
| ancestor | [ImageName] Image or descendant used to create container |
|
| ancestor | [ImageName] Image or descendant used to create container |
|
||||||
| before | [ID] or [Name] Containers created before this container |
|
| before | [ID] or [Name] Containers created before this container |
|
||||||
| since | [ID] or [Name] Containers created since this container |
|
| since | [ID] or [Name] Containers created since this container |
|
||||||
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
||||||
| health | [Status] healthy or unhealthy |
|
| health | [Status] healthy or unhealthy |
|
||||||
| pod | [Pod] name or full or partial ID of pod |
|
| pod | [Pod] name or full or partial ID of pod |
|
||||||
| network | [Network] name or full ID of network |
|
| network | [Network] name or full ID of network |
|
||||||
| until | [DateTime] Containers created before the given duration or time. |
|
| until | [DateTime] Containers created before the given duration or time. |
|
||||||
|
|
||||||
@@option ignore
|
@@option ignore
|
||||||
|
|
||||||
|
@ -28,21 +28,21 @@ Filters with the same key work inclusive with the only exception being
|
|||||||
|
|
||||||
Valid filters are listed below:
|
Valid filters are listed below:
|
||||||
|
|
||||||
| **Filter** | **Description** |
|
| **Filter** | **Description** |
|
||||||
|------------|----------------------------------------------------------------------------------|
|
|------------|-------------------------------------------------------------------------------------------------|
|
||||||
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
| id | [ID] Container's ID (CID prefix match by default; accepts regex) |
|
||||||
| name | [Name] Container's name (accepts regex) |
|
| name | [Name] Container's name (accepts regex) |
|
||||||
| label | [Key] or [Key=Value] Label assigned to a container |
|
| label | [Key] or [Key=Value] Label assigned to a container |
|
||||||
| exited | [Int] Container's exit code |
|
| exited | [Int] Container's exit code |
|
||||||
| status | [Status] Container's status: 'created', 'exited', 'paused', 'running', 'unknown' |
|
| status | [Status] Container's status: 'created', 'initialized', 'exited', 'paused', 'running', 'unknown' |
|
||||||
| ancestor | [ImageName] Image or descendant used to create container |
|
| ancestor | [ImageName] Image or descendant used to create container |
|
||||||
| before | [ID] or [Name] Containers created before this container |
|
| before | [ID] or [Name] Containers created before this container |
|
||||||
| since | [ID] or [Name] Containers created since this container |
|
| since | [ID] or [Name] Containers created since this container |
|
||||||
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
||||||
| health | [Status] healthy or unhealthy |
|
| health | [Status] healthy or unhealthy |
|
||||||
| pod | [Pod] name or full or partial ID of pod |
|
| pod | [Pod] name or full or partial ID of pod |
|
||||||
| network | [Network] name or full ID of network |
|
| network | [Network] name or full ID of network |
|
||||||
| until | [DateTime] Containers created before the given duration or time. |
|
| until | [DateTime] Containers created before the given duration or time. |
|
||||||
|
|
||||||
@@option latest
|
@@option latest
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user