← Back to list

dokploy-deploy
by JPropato
Sistema Bauman
⭐ 0🍴 0📅 Jan 18, 2026
SKILL.md
name: dokploy-deploy description: Deploy applications to Dokploy using the CLI or API. Use when the user says "deploy to dokploy", "push to production", or "set up dokploy deployment".
Dokploy Deployment
This skill enables you to manage and deploy applications to a Dokploy instance. Dokploy is an open-source PaaS (Platform as a Service) that simplifies deployment on your own VPS.
Prerequisites
- Access to a Dokploy instance.
- Dokploy CLI installed (
npm install -g dokploy). - API Token (generated from Dokploy Dashboard > Settings > Profile).
How to Deploy
1. Using Dokploy CLI
If the CLI is available in the environment:
# Login
dokploy login --host <your-dokploy-host> --token <your-token>
# Create a Project (if not exists)
dokploy project create --name <project-name>
# Create an Application
dokploy app create --name <app-name> --projectName <project-name>
# Deploy
dokploy app deploy --name <app-name> --projectName <project-name>
2. Manual Deployment via Dashboard
- Navigate to your Dokploy host (e.g.,
http://vps-ip:3000). - Create or select a Project.
- Add a new Service > Application.
- Connect your Git Repository (GitHub/GitLab) or use a Docker Image.
- Configure Nixpacks or Dockerfile for the build.
- Click Deploy.
Best Practices
- Environment Variables: Always use the Dokploy dashboard or CLI to set secrets. Do not commit
.envfiles. - Health Checks: Configure health checks in the Dokploy dashboard to ensure zero-downtime deployments.
- Nixpacks: Prefers Nixpacks for automatic language detection and build optimization.
Triggering via API
You can trigger a deployment programmatically using a POST request to the Dokploy API:
POST https://<your-dokploy-host>/api/deployments/deploy
Authorization: Bearer <your-token>
Content-Type: application/json
{
"applicationId": "<your-application-id>"
}
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon