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:
@@ -1,5 +1,5 @@
|
|||||||
# Database
|
# 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
|
||||||
FIREBASE_CREDENTIALS_FILE=./firebase-credentials.json
|
FIREBASE_CREDENTIALS_FILE=./firebase-credentials.json
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ services:
|
|||||||
POSTGRES_USER: food_ai
|
POSTGRES_USER: food_ai
|
||||||
POSTGRES_PASSWORD: food_ai_local
|
POSTGRES_PASSWORD: food_ai_local
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5433:5432"
|
||||||
volumes:
|
volumes:
|
||||||
- pgdata:/var/lib/postgresql/data
|
- pgdata:/var/lib/postgresql/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
|
|||||||
Reference in New Issue
Block a user