mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 08:52:57 +00:00
- 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
16 lines
354 B
JSON
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": "*"
|
|
}
|
|
}
|