Fix jwt-token

This commit is contained in:
2025-09-23 15:13:06 +02:00
parent f40d0d9b89
commit 57e7353d4f
3 changed files with 278 additions and 4 deletions

View File

@@ -14,8 +14,10 @@ services:
volumes:
- postgres_data:/var/lib/postgresql/data
- ./server/scripts/init-db.sql:/docker-entrypoint-initdb.d/init-db.sql
ports:
- "5433:5432"
# SECURITY: No external ports - internal access only
# Remove this line for production: ports: - "5433:5432"
expose:
- "5432" # Internal port only
networks:
- drone-network
healthcheck:
@@ -32,8 +34,10 @@ services:
command: redis-server --appendonly yes
volumes:
- redis_data:/data
ports:
- "6380:6379"
# SECURITY: No external ports - internal access only
# Remove this line for production: ports: - "6380:6379"
expose:
- "6379" # Internal port only
networks:
- drone-network
healthcheck: