VPS_stopProjectV1
Gracefully stop all services in a Docker Compose project by shutting down containers in reverse dependency order. Preserve container configurations and data volumes for temporary halts without loss.
Instructions
Stops all running services in a Docker Compose project while preserving container configurations and data volumes.
This operation gracefully shuts down containers in reverse dependency order.
Use this to temporarily halt a project without removing data or configurations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectName | Yes | Docker Compose project name using alphanumeric characters, dashes, and underscores only | |
virtualMachineId | Yes | Virtual Machine ID |
Input Schema (JSON Schema)
{
"properties": {
"projectName": {
"description": "Docker Compose project name using alphanumeric characters, dashes, and underscores only",
"type": "string"
},
"virtualMachineId": {
"description": "Virtual Machine ID",
"type": "integer"
}
},
"required": [
"virtualMachineId",
"projectName"
],
"type": "object"
}