start_container
Start a stopped container to resume its operations. Specify the container name or ID to initiate the container lifecycle process.
Instructions
Start a stopped 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"
}