Update production ports to 7600 (frontend) and 7601 (backend) in compose and example env
Build and Push Multi-Platform Images / build-and-push (push) Successful in 11s

This commit is contained in:
2026-05-04 09:09:25 +02:00
parent 5879aac0bf
commit f907361a5d
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -6,7 +6,7 @@ services:
container_name: paperless-backend
restart: unless-stopped
ports:
- "${BACKEND_PORT:-3100}:3100"
- "${BACKEND_PORT:-7601}:3100"
environment:
- PORT=3100
- DB_HOST=${DB_HOST:-db}
@@ -50,9 +50,9 @@ services:
container_name: paperless-frontend
restart: unless-stopped
ports:
- "${FRONTEND_PORT:-8080}:80"
- "${FRONTEND_PORT:-7600}:80"
environment:
- VITE_API_URL=${VITE_API_URL:-http://localhost:3100}
- VITE_API_URL=${VITE_API_URL:-http://localhost:7601}
- VITE_OIDC_AUTHORITY=${OIDC_ISSUER:-}
- VITE_OIDC_CLIENT_ID=${OIDC_CLIENT_ID:-}
- VITE_OIDC_REDIRECT_URI=${OIDC_REDIRECT_URI:-}