Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Manage Dokploy deployments, projects, applications, and domains via the Dokploy API.
Manage Dokploy deployments, projects, applications, and domains via the Dokploy API.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Interact with Dokploy's API to manage projects, applications, domains, and deployments.
Dokploy instance running with API access API Key generated from /settings/profile โ "API/CLI Section" Set the DOKPLOY_API_URL environment variable (default: http://localhost:3000)
Set these environment variables or use the config command: # Dokploy instance URL export DOKPLOY_API_URL="https://your-dokploy-instance.com" # Your API token export DOKPLOY_API_KEY="your-generated-api-key" # Or run the config command dokploy-config set --url "https://your-dokploy-instance.com" --key "your-api-key"
dokploy-project list
dokploy-project get <project-id>
dokploy-project create --name "My Project" --description "Description here"
dokploy-project update <project-id> --name "New Name" --description "Updated"
dokploy-project delete <project-id>
dokploy-app list --project <project-id>
dokploy-app get <application-id>
dokploy-app create \ --project <project-id> \ --name "my-app" \ --type "docker" \ --image "nginx:latest" Application types: docker, git, compose
dokploy-app deploy <application-id>
dokploy-app logs <application-id> --deployment <deployment-id>
dokploy-app deployments <application-id>
dokploy-app update <application-id> --name "new-name" --env "KEY=VALUE"
dokploy-app delete <application-id>
dokploy-domain list --application <application-id>
dokploy-domain get <domain-id>
dokploy-domain create \ --application <application-id> \ --domain "app.example.com" \ --path "/" \ --port 80
dokploy-domain update <domain-id> --domain "new.example.com"
dokploy-domain delete <domain-id>
dokploy-app env list <application-id>
dokploy-app env set <application-id> --key "DATABASE_URL" --value "postgres://..."
dokploy-app env delete <application-id> --key "DATABASE_URL"
dokploy-status
dokploy-config show
Base URL: $DOKPLOY_API_URL/api EndpointMethodDescription/project.allGETList all projects/project.createPOSTCreate project/project.byIdGETGet project by ID/project.updatePATCHUpdate project/project.deleteDELETEDelete project/application.allGETList applications/application.createPOSTCreate application/application.byIdGETGet application by ID/application.updatePATCHUpdate application/application.deleteDELETEDelete application/application.deployPOSTTrigger deployment/deployment.allGETList deployments/deployment.byIdGETGet deployment by ID/deployment.logsGETGet deployment logs/domain.allGETList domains/domain.createPOSTCreate domain/domain.updatePATCHUpdate domain/domain.deleteDELETEDelete domain
All API calls require the x-api-key header Use jq for JSON parsing in scripts Some operations require admin permissions Deployment is asynchronous โ use status endpoint to check progress
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.