docker_compose_ps
List running containers in a Docker Compose stack to monitor service status and manage your development environment effectively.
Instructions
List containers in a docker-compose stack
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| services | No | Only show specific services | |
| all | No | Show all stopped containers | |
| file | No | Path to compose file | |
| cwd | No | Working directory |
Input Schema (JSON Schema)
{
"properties": {
"all": {
"default": false,
"description": "Show all stopped containers",
"type": "boolean"
},
"cwd": {
"description": "Working directory",
"type": "string"
},
"file": {
"description": "Path to compose file",
"type": "string"
},
"services": {
"description": "Only show specific services",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}