chore: change PostgreSQL host port to 5433

Avoids conflict with other local Postgres instances.
Container internal port stays 5432; only the host-side mapping changes.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
dbastrikin
2026-03-17 16:09:34 +02:00
parent 87ef2097fc
commit 98adbd72f1
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
# Database
DATABASE_URL=postgres://food_ai:food_ai_local@localhost:5432/food_ai?sslmode=disable
DATABASE_URL=postgres://food_ai:food_ai_local@localhost:5433/food_ai?sslmode=disable
# Firebase
FIREBASE_CREDENTIALS_FILE=./firebase-credentials.json

View File

@@ -6,7 +6,7 @@ services:
POSTGRES_USER: food_ai
POSTGRES_PASSWORD: food_ai_local
ports:
- "5432:5432"
- "5433:5432"
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck: