From c34bdad98fe44fee392646e6bdd26b74960ecff2 Mon Sep 17 00:00:00 2001 From: "Zachariah K. Sharma" Date: Sat, 6 Jun 2026 23:12:49 -0600 Subject: [PATCH] Avoid default host port conflict --- .env.example | 2 +- README.md | 2 +- docker-compose.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index c1dac07..07b22d5 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ # --- Portainer / Compose --- -APP_PORT="3000" +APP_PORT="3080" POSTGRES_PASSWORD="change-this" # --- Auth.js --- diff --git a/README.md b/README.md index 0ae12d0..9660cdb 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The app container runs `prisma migrate deploy` before starting the Next.js stand ## Required `.env` ```bash -APP_PORT=3000 +APP_PORT=3080 POSTGRES_PASSWORD=replace-with-a-strong-password AUTH_SECRET=replace-with-openssl-rand-base64-32 diff --git a/docker-compose.yml b/docker-compose.yml index bfdd9c4..5ef75d9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -36,7 +36,7 @@ services: HCAPTCHA_SECRET: ${HCAPTCHA_SECRET:-} CRON_SECRET: ${CRON_SECRET:-} ports: - - "${APP_PORT:-3000}:3000" + - "${APP_PORT:-3080}:3000" volumes: - uploads:/app/uploads