docker_compose_up
Start and run Docker containers from your docker-compose.yml file to launch development environments and services with options for background operation, selective services, and custom compose files.
Instructions
Create and start containers defined in docker-compose.yml
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| detach | No | Detached mode: run in background | |
| build | No | Build images before starting | |
| services | No | Only start specific services | |
| file | No | Path to compose file (default: docker-compose.yml) | |
| cwd | No | Working directory (where docker-compose.yml is located) |
Input Schema (JSON Schema)
{
"properties": {
"build": {
"default": false,
"description": "Build images before starting",
"type": "boolean"
},
"cwd": {
"description": "Working directory (where docker-compose.yml is located)",
"type": "string"
},
"detach": {
"default": true,
"description": "Detached mode: run in background",
"type": "boolean"
},
"file": {
"description": "Path to compose file (default: docker-compose.yml)",
"type": "string"
},
"services": {
"description": "Only start specific services",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}