Avoid default host port conflict
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# --- Portainer / Compose ---
|
# --- Portainer / Compose ---
|
||||||
APP_PORT="3000"
|
APP_PORT="3080"
|
||||||
POSTGRES_PASSWORD="change-this"
|
POSTGRES_PASSWORD="change-this"
|
||||||
|
|
||||||
# --- Auth.js ---
|
# --- Auth.js ---
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ The app container runs `prisma migrate deploy` before starting the Next.js stand
|
|||||||
## Required `.env`
|
## Required `.env`
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
APP_PORT=3000
|
APP_PORT=3080
|
||||||
POSTGRES_PASSWORD=replace-with-a-strong-password
|
POSTGRES_PASSWORD=replace-with-a-strong-password
|
||||||
|
|
||||||
AUTH_SECRET=replace-with-openssl-rand-base64-32
|
AUTH_SECRET=replace-with-openssl-rand-base64-32
|
||||||
|
|||||||
+1
-1
@@ -36,7 +36,7 @@ services:
|
|||||||
HCAPTCHA_SECRET: ${HCAPTCHA_SECRET:-}
|
HCAPTCHA_SECRET: ${HCAPTCHA_SECRET:-}
|
||||||
CRON_SECRET: ${CRON_SECRET:-}
|
CRON_SECRET: ${CRON_SECRET:-}
|
||||||
ports:
|
ports:
|
||||||
- "${APP_PORT:-3000}:3000"
|
- "${APP_PORT:-3080}:3000"
|
||||||
volumes:
|
volumes:
|
||||||
- uploads:/app/uploads
|
- uploads:/app/uploads
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user