docker_ps
List Docker containers and their current status to monitor running applications and manage container lifecycle in development environments.
Instructions
List Docker containers with their status
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| all | No | Show all containers (default shows just running) | |
| filter | No | Filter output based on conditions (e.g., "status=running") | |
| format | No | Output format | table |
| cwd | No | Working directory |
Input Schema (JSON Schema)
{
"properties": {
"all": {
"default": false,
"description": "Show all containers (default shows just running)",
"type": "boolean"
},
"cwd": {
"description": "Working directory",
"type": "string"
},
"filter": {
"description": "Filter output based on conditions (e.g., \"status=running\")",
"type": "string"
},
"format": {
"default": "table",
"description": "Output format",
"enum": [
"table",
"json"
],
"type": "string"
}
},
"type": "object"
}