VPS_startProjectV1
Initiate all stopped services in a Docker Compose project, ensuring containers start in the correct dependency order. Use to resume a project or start services after a system reboot.
Instructions
Starts all services in a Docker Compose project that are currently stopped.
This operation brings up containers in the correct dependency order as defined in the compose file.
Use this to resume a project that was previously stopped or to start services after a system reboot.
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"
}