exec_container
Execute commands inside containers to run applications, perform maintenance tasks, or troubleshoot running processes within your containerized environment.
Instructions
Execute a command inside a container.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| container | Yes | ||
| command | Yes | Command to execute |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to execute",
"items": {
"type": "string"
},
"title": "Command",
"type": "array"
},
"container": {
"title": "Container",
"type": "string"
}
},
"required": [
"container",
"command"
],
"type": "object"
}