944 B
944 B
Quickstart: Verify Dokploy deployment for this repo
This quickstart describes the minimal steps to verify Dokploy pulls the repo's docker-compose.yml and deploys the application.
Prerequisites:
- Dokploy project configured with project-level secrets (see checklists/deployment-credentials.md)
- Dokploy webhook URL: https://system.cloudarix.de/api/deploy/compose/JXSdfeHdc6wBKUEiJrX_9
- Repository contains
docker-compose.ymlat repository root
Steps:
- Push a test commit to
main:
git checkout main
git pull
git commit --allow-empty -m "test dokploy webhook"
git push origin main
-
Wait for Dokploy to receive the webhook and start a deployment (watch Dokploy UI or check the project runs).
-
Verify the deployment run completes and application healthchecks succeed (e.g., curl the app endpoint or check service logs).
-
If deployment fails, gather logs from Dokploy run and follow
runbooks/failed-deploy.md.