coolify_update_service
Update service configurations in Coolify by modifying Docker Compose settings, descriptions, or names to manage infrastructure changes.
Instructions
Update service
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Service description | |
docker_compose_raw | No | Docker Compose configuration | |
name | No | Service name | |
uuid | Yes | Service UUID |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Service description",
"type": "string"
},
"docker_compose_raw": {
"description": "Docker Compose configuration",
"type": "string"
},
"name": {
"description": "Service name",
"type": "string"
},
"uuid": {
"description": "Service UUID",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}