quantumtaskai-caprover/dokploy.json
thecyberlearn 7a51dca243 Add debug configuration for Dokploy 404 troubleshooting
- Switch to debug Dockerfile with detailed logging
- Add Dockerfile.test for basic container functionality test
- Enable debug mode to see detailed startup logs
- This will help identify where the 404 error is coming from
2025-09-05 09:24:49 +05:30

16 lines
354 B
JSON

{
"name": "quantum-tasks-ai",
"type": "dockerfile",
"dockerfile": "./Dockerfile.dokploy.debug",
"port": 3000,
"healthCheck": "/health/",
"buildArgs": {},
"buildOptions": ["--no-cache"],
"env": {
"PYTHONUNBUFFERED": "1",
"DEBUG": "true",
"SECRET_KEY": "debug-key-change-in-production-123456789",
"ALLOWED_HOSTS": "*"
}
}