Auxx.ai
Self-Host

Troubleshooting

Common issues and solutions for self-hosted Auxx.ai deployments including Docker, database, and networking problems.

Solutions for common self-hosting issues. For general app issues, see Common issues.

Docker Compose issues

ProblemSolution
Containers won't startCheck docker compose logs <service>. Verify .env has all required secrets set.
Database connection refusedEnsure DATABASE_URL uses postgres (Docker service name) as host, not localhost.
Redis connection refusedEnsure REDIS_HOST=redis (Docker service name).
Port already in useChange the conflicting port in .env (e.g., APP_PORT=3001). The docker-compose.yml uses ${VAR:-default} interpolation.
Web service unhealthyCheck docker compose logs web. Common causes: missing env vars, database not ready (migration service may still be running).
MinIO/file upload errorsVerify S3_ENDPOINT=http://minio:9000 and that the minio-init service ran successfully.
Migration failuresCheck docker compose logs migrate. Ensure database is accessible and DATABASE_URL is correct.

General issues

Getting help