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
Build and Push Multi-Platform Images / build-and-push (push) Successful in 11s
This commit is contained in:
+2
-2
@@ -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
|
||||
|
||||
+3
-3
@@ -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:-}
|
||||
|
||||
Reference in New Issue
Block a user