Fix port conflicts: PostgreSQL 5432->5433, Redis 6379->6380

This commit is contained in:
Timo
2026-01-16 18:53:12 +01:00
parent 2c1ec69a79
commit 6ac7d5a791
12 changed files with 15205 additions and 6 deletions

View File

@@ -1,5 +1,3 @@
version: '3.8'
services:
postgres:
image: postgres:15-alpine
@@ -9,7 +7,7 @@ services:
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin123
ports:
- "5432:5432"
- "5433:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
@@ -22,7 +20,7 @@ services:
image: redis:7-alpine
container_name: website-monitor-redis
ports:
- "6379:6379"
- "6380:6379"
volumes:
- redis_data:/data
healthcheck: