From f907361a5d81b0efc0147a678aa77b8a3b381f37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20P=C3=B6ttker?= Date: Mon, 4 May 2026 09:09:25 +0200 Subject: [PATCH] Update production ports to 7600 (frontend) and 7601 (backend) in compose and example env --- .env.example | 4 ++-- docker-compose.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.env.example b/.env.example index 4c93451..3f16301 100644 --- a/.env.example +++ b/.env.example @@ -8,8 +8,8 @@ # ============================================================================= # --- Ports --- -BACKEND_PORT=3100 -FRONTEND_PORT=8080 +BACKEND_PORT=7601 +FRONTEND_PORT=7600 # --- MySQL Datenbank (extern) --- DB_HOST=192.168.1.x diff --git a/docker-compose.yml b/docker-compose.yml index 7826ded..3cff0c4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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:-}