fix: use non-conflicting ports for dev database containers
Some checks failed
Dev Deployment (Zero Downtime) / deploy-dev (push) Has been cancelled

Change dev PostgreSQL host port from 5432 to 5433 and dev Redis from
6379 to 6380 to avoid conflicts with production containers or other
services on the host. Internal Docker network ports remain unchanged.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-17 15:11:30 +01:00
parent c449e9e0a8
commit 3fd7329dc5

View File

@@ -4,7 +4,7 @@ services:
image: postgres:16-alpine image: postgres:16-alpine
container_name: portfolio_postgres_dev container_name: portfolio_postgres_dev
ports: ports:
- "5432:5432" - "5433:5432"
environment: environment:
POSTGRES_DB: portfolio_dev POSTGRES_DB: portfolio_dev
POSTGRES_USER: portfolio_user POSTGRES_USER: portfolio_user
@@ -27,7 +27,7 @@ services:
image: redis:7-alpine image: redis:7-alpine
container_name: portfolio_redis_dev container_name: portfolio_redis_dev
ports: ports:
- "6379:6379" - "6380:6379"
volumes: volumes:
- redis_dev_data:/data - redis_dev_data:/data
networks: networks: