stop_container
Stop a running Podman container by name or ID. Configure timeout period before automatic termination to manage container lifecycle operations.
Instructions
Stop a running container.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| container | Yes | Container name or ID | |
| timeout | No | Seconds to wait before killing container |
Input Schema (JSON Schema)
{
"properties": {
"container": {
"description": "Container name or ID",
"title": "Container",
"type": "string"
},
"timeout": {
"default": 10,
"description": "Seconds to wait before killing container",
"title": "Timeout",
"type": "integer"
}
},
"required": [
"container"
],
"type": "object"
}