From 677a45b52f3f11937dd2184dc3cb8b027bf52bbc Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Mon, 6 Apr 2026 15:37:49 +0200 Subject: [PATCH] fix: use port 5433 for Docker PostgreSQL to avoid conflicts with local instance --- .env.example | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 77e172c..a432c9c 100644 --- a/.env.example +++ b/.env.example @@ -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 diff --git a/docker-compose.yml b/docker-compose.yml index de7a938..977f619 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ services: image: postgres:16-alpine restart: unless-stopped ports: - - "5432:5432" + - "5433:5432" environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres