compose_unpause
Resume paused containers in a Docker Compose project, continuing processes from their frozen state without restarting. Restores service operations quickly and reliably.
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 — 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 |