container_info
Inspect container details by name or ID to view configuration, status, and runtime information for containerized applications managed through Podman.
Instructions
Inspect a container by name or ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| container | Yes | Container name or ID |
Input Schema (JSON Schema)
{
"properties": {
"container": {
"description": "Container name or ID",
"title": "Container",
"type": "string"
}
},
"required": [
"container"
],
"type": "object"
}