restart_container
Restart a Podman container to apply configuration changes, recover from issues, or refresh the container state using the container name or ID.
Instructions
Restart a container.
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"
}