manage_containers
Execute Docker container operations including listing, starting, stopping, removing, and restarting containers through natural language commands.
Instructions
Manage Docker containers (list, start, stop, remove)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform on containers | |
all | No | Include stopped containers when listing | |
container | No | Container name or ID (required for start, stop, remove, restart) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"description": "Action to perform on containers",
"enum": [
"list",
"start",
"stop",
"remove",
"restart"
],
"type": "string"
},
"all": {
"description": "Include stopped containers when listing",
"type": "boolean"
},
"container": {
"description": "Container name or ID (required for start, stop, remove, restart)",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}