fix: update PostgreSQL host to static IP and disable Traefik for PostgreSQL service

This commit is contained in:
2025-05-03 22:05:59 +08:00
parent c03e49b389
commit 2ac2b20a97
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ services:
environment:
APP_URL: "https://doc.${DOMAIN}"
APP_SECRET: ${JWT_SECRET}
DATABASE_URL: "postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${DATABASE__HOSTNAME}:5432/docmost?schema=public"
DATABASE_URL: "postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@192.168.50.220:5432/docmost?schema=public"
REDIS_URL: "redis://tasks.redis:6379"
expose:
- 3000