start_service
Start a Coolify service by its UUID to initialize the container and make it accessible for use.
Instructions
Start a previously created service. This will initialize the service container and make it accessible.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uuid | Yes | UUID of the service to start. Obtain this from list_services or from the create_service response. |
Input Schema (JSON Schema)
{
"properties": {
"uuid": {
"description": "UUID of the service to start. Obtain this from list_services or from the create_service response.",
"pattern": "^[a-zA-Z0-9]+$",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}