coolify_trigger_deployment
Initiate application deployment in Coolify by specifying the application UUID, with an option to force rebuild if needed.
Instructions
Trigger a deployment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
application_uuid | Yes | Application UUID | |
force_rebuild | No | Force rebuild |
Input Schema (JSON Schema)
{
"properties": {
"application_uuid": {
"description": "Application UUID",
"type": "string"
},
"force_rebuild": {
"default": false,
"description": "Force rebuild",
"type": "boolean"
}
},
"required": [
"application_uuid"
],
"type": "object"
}