compose_unpause
Resume paused Docker Compose processes from their frozen state, continuing without restarting. Specify services or project directory to target.
Instructions
Unpause the containers of a compose project (resumes paused processes).
Reverse of compose_pause: processes continue from where they were frozen (no restart).
compose_start is the counterpart for stopped containers.
Does not raise on a non-zero CLI exit (a missing compose plugin or a timeout still raises) - inspect
returncode/stderr in the result.
Args:
services: Restrict to these services (default: all)
project_dir: Dir with the compose file (default: server cwd; copied to the target host if no local plugin)
files: Explicit compose file paths (repeatable, -f)
project_name: Compose project name override
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 |