compose_start
Start stopped Docker Compose containers without recreating them. Specify the project directory or service names to resume specific services.
Instructions
Start existing (stopped) containers of a compose project.
Counterpart to compose_stop: starts existing containers without recreating them. Use
compose_up to (re)create containers from the compose file.
args:
project_dir - Dir with the compose file (default: server cwd)
files - Explicit compose file paths (repeatable, -f)
project_name - Compose project name override
services - Specific services to start (default: all)
timeout_seconds - Subprocess timeout (default 600s)
returns: dict - {"returncode": int, "stdout": str, "stderr": str, "truncated": bool}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| files | No | ||
| services | No | ||
| project_dir | No | ||
| project_name | No | ||
| timeout_seconds | No |