fix: use port 5433 for Docker PostgreSQL to avoid conflicts with local instance

This commit is contained in:
2026-04-06 15:37:49 +02:00
parent 3c9cd47427
commit 677a45b52f
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
# Database
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/template
DATABASE_URL=postgresql://postgres:postgres@localhost:5433/template
# Payload CMS
PAYLOAD_SECRET=your-secret-here

View File

@@ -3,7 +3,7 @@ services:
image: postgres:16-alpine
restart: unless-stopped
ports:
- "5432:5432"
- "5433:5432"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres