restart_service
Restart a Coolify service to apply configuration changes or resolve operational issues by stopping and starting it using its UUID.
Instructions
Restart a service by stopping and starting it again. Useful for applying configuration changes or recovering from issues.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uuid | Yes | UUID of the service to restart. Get this from list_services. |
Input Schema (JSON Schema)
{
"properties": {
"uuid": {
"description": "UUID of the service to restart. Get this from list_services.",
"pattern": "^[a-zA-Z0-9]+$",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}