refactor: update health check URL in Dockerfile and enhance database initialization script with new role grants and type creation

This commit is contained in:
Poyraz Avsever
2026-06-13 22:01:51 +03:00
parent 0f89d9f627
commit bfafe43752
3 changed files with 11 additions and 24 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ ENV HOSTNAME="0.0.0.0"
# Health check for Dokploy / Coolify / Docker orchestrators
HEALTHCHECK --interval=30s --timeout=10s --start-period=15s --retries=3 \
CMD wget -qO- http://localhost:3000/api/health || exit 1
CMD wget -qO- http://127.0.0.1:3000/api/health || exit 1
# Runtime env vars (Supabase keys, AI keys etc.) are injected by
# Dokploy / Coolify as environment variables — no .env file needed.