fix: use port 6380 for Redis external binding (6379 already allocated on host)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-19 15:49:40 +05:30
parent 4fdd8160fd
commit a0e5629f77
+1 -1
View File
@@ -20,7 +20,7 @@ services:
image: redis:7-alpine image: redis:7-alpine
command: redis-server --requirepass ${REDIS_PASSWORD} command: redis-server --requirepass ${REDIS_PASSWORD}
ports: ports:
- '6379:6379' - '6380:6379'
environment: environment:
REDIS_PASSWORD: ${REDIS_PASSWORD} REDIS_PASSWORD: ${REDIS_PASSWORD}
volumes: volumes: