dokploy
Installation
SKILL.md
Dokploy Infrastructure Management
Dokploy is a self-hosted PaaS. All management happens through its REST API using curl. No CLI tools or bash scripts — construct curl commands directly.
Authentication & Request Pattern
Environment variables (must be set):
DOKPLOY_API_URL— base URL of the Dokploy instance (e.g.,https://dokploy.example.com)DOKPLOY_API_KEY— API token generated from Dokploy UI: Settings → Profile → API/CLI Section
All endpoints follow the pattern: $DOKPLOY_API_URL/api/{router}.{procedure}
GET request (reads)
curl -s -H "x-api-key: $DOKPLOY_API_KEY" \
"$DOKPLOY_API_URL/api/{endpoint}?{param}={value}"
Related skills