← Back to Skills Marketplace
laoshu133

Dokploy

by 米空格 · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
325
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install dokploy-v2
Description
Manage Dokploy deployments, projects, applications, and domains via the Dokploy API.
README (SKILL.md)

Dokploy Skill

Interact with Dokploy's API to manage projects, applications, domains, and deployments.

Prerequisites

  1. Dokploy instance running with API access
  2. API Key generated from /settings/profile → "API/CLI Section"
  3. Set the DOKPLOY_API_URL environment variable (default: http://localhost:3000)

Configuration

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"

Projects

List all projects

dokploy-project list

Get project details

dokploy-project get \x3Cproject-id>

Create a new project

dokploy-project create --name "My Project" --description "Description here"

Update a project

dokploy-project update \x3Cproject-id> --name "New Name" --description "Updated"

Delete a project

dokploy-project delete \x3Cproject-id>

List environments in a project

dokploy-project envs \x3Cproject-id>

Applications

List applications in a project

dokploy-app list --project \x3Cproject-id>

Get application details

dokploy-app get \x3Capplication-id>

Create an application

dokploy-app create \
  --environment-id \x3Cenvironment-id> \
  --name "my-app" \
  --type "docker" \
  --image "nginx:latest"

Application types: docker, git, compose

Trigger deployment

dokploy-app deploy \x3Capplication-id>

Get deployment logs

dokploy-app logs \x3Capplication-id> --deployment \x3Cdeployment-id>

List deployments

dokploy-app deployments \x3Capplication-id>

Update application

dokploy-app update \x3Capplication-id> --name "new-name" --env "KEY=VALUE"

Delete an application

dokploy-app delete \x3Capplication-id>

Domains

List domains for an application

dokploy-domain list --app \x3Capplication-id>

Get domain details

dokploy-domain get \x3Cdomain-id>

Add a domain to an application

dokploy-domain create \
  --app \x3Capplication-id> \
  --host "app.example.com" \
  --path "/" \
  --port 80

Update a domain

dokploy-domain update \x3Cdomain-id> --host "new.example.com"

Delete a domain

dokploy-domain delete \x3Cdomain-id>

Environment Variables

List environment variables for an application

dokploy-app env list \x3Capplication-id>

Set environment variable

dokploy-app env set \x3Capplication-id> --key "DATABASE_URL" --value "postgres://..."

Delete environment variable

dokploy-app env delete \x3Capplication-id> --key "DATABASE_URL"

Utility Commands

Check API connection

dokploy-status

View current config

dokploy-config show

API Reference

Base URL: $DOKPLOY_API_URL/api

Endpoint Method Description
/project.all GET List all projects
/project.create POST Create project
/project.one GET Get project by ID
/project.update POST Update project
/project.remove POST Delete project
/application.search GET List applications
/application.create POST Create application
/application.one GET Get application by ID
/application.update POST Update application
/application.delete POST Delete application
/application.deploy POST Trigger deployment
/deployment.all GET List deployments
/deployment.byId GET Get deployment by ID
/deployment.logs GET Get deployment logs
/domain.all GET List domains
/domain.create POST Create domain
/domain.update PATCH Update domain
/domain.delete DELETE Delete domain

Notes

  • 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
  • Note: Currently, Dokploy only provides a REST API for Deployment Logs. Real-time Application Runtime Logs (container logs) are only available via WebSocket and cannot be accessed through this CLI skill.
Usage Guidance
The scripts appear to do what the description says, but the published metadata omitted key requirements. Before installing: 1) Verify you have curl and jq installed. 2) Only provide DOKPLOY_API_KEY to trusted Dokploy instances (DOKPLOY_API_URL) because the CLI will send that key to whatever URL you set. 3) Be aware the skill will write ~/.dokployrc containing your API URL and key in plain text — if you prefer, avoid using dokploy-config set and instead export env vars per session. 4) If the registry page doesn't list required env vars or binaries, ask the publisher to fix metadata or inspect the scripts yourself (they are included) to confirm no unexpected behavior. If you cannot verify the upstream source of this skill, consider withholding the API key or running the scripts in an isolated environment first.
Capability Analysis
Type: OpenClaw Skill Name: dokploy-v2 Version: 1.0.1 The skill bundle provides a functional CLI wrapper for the Dokploy API, allowing management of projects, applications, and domains. The scripts (dokploy.sh, dokploy-app.sh, etc.) use standard tools like curl and jq to interact with the specified Dokploy instance and store configuration locally in ~/.dokployrc. No evidence of malicious intent, data exfiltration, or prompt injection was found.
Capability Assessment
Purpose & Capability
The code (bash CLI scripts) implements project, app, domain, and deployment management against a Dokploy REST API — this matches the skill name/description. The scripts use curl/jq to call endpoints documented in SKILL.md and perform expected actions.
Instruction Scope
SKILL.md and the scripts only instruct the agent/user to call the Dokploy API, read/write a single config file (~/.dokployrc), and use curl/jq. They do not attempt to read unrelated system secrets or post data to unexpected external services beyond the configured DOKPLOY_API_URL.
Install Mechanism
There is no install spec or remote download. The skill is instruction-only with bundled shell scripts. No external archives, package installs, or URL downloads are performed during install.
Credentials
Registry metadata at the top claims no required env vars or binaries, but .clawdhub/package.json and SKILL.md/scripts require DOKPLOY_API_URL, DOKPLOY_API_KEY and binaries curl and jq. This mismatch is an incoherence: the scripts will fail or prompt for secrets if those env vars/binaries are not present, and the registry did not advertise that requirement.
Persistence & Privilege
The skill does not request elevated privileges or 'always' inclusion. It does write a per-user config file (~/.dokployrc) to store the API URL and key, which is reasonable for a CLI but worth noting because it persists an API key in the user's home directory (in plain text).
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install dokploy-v2
  3. After installation, invoke the skill by name or use /dokploy-v2
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
本技能仅兼容 Dokploy v0.28 及以上版本
Metadata
Slug dokploy-v2
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Dokploy?

Manage Dokploy deployments, projects, applications, and domains via the Dokploy API. It is an AI Agent Skill for Claude Code / OpenClaw, with 325 downloads so far.

How do I install Dokploy?

Run "/install dokploy-v2" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Dokploy free?

Yes, Dokploy is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Dokploy support?

Dokploy is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Dokploy?

It is built and maintained by 米空格 (@laoshu133); the current version is v1.0.1.

💬 Comments