Update Docker configuration to change HTTP port from 8080 to 8085
CI / Backend (build + test) (push) Successful in 3m33s
CI / Frontend (lint + typecheck + build) (push) Successful in 29s

- Modified docker-compose.yml to update the ASPNETCORE_HTTP_PORTS and health check URL to reflect the new port.
- Adjusted service port mapping to ensure consistency with the updated configuration.
This commit is contained in:
Leonid Pershin
2026-07-02 13:05:00 +03:00
parent 8b92204733
commit 7e8435ee76
+3 -3
View File
@@ -28,20 +28,20 @@ services:
- .env - .env
environment: environment:
ASPNETCORE_ENVIRONMENT: Production ASPNETCORE_ENVIRONMENT: Production
ASPNETCORE_HTTP_PORTS: '8080' ASPNETCORE_HTTP_PORTS: '8085'
ConnectionStrings__Default: 'Host=db;Port=5432;Database=${POSTGRES_DB:-pnvpanel};Username=${POSTGRES_USER:-pnvpanel};Password=${POSTGRES_PASSWORD:-pnvpanel}' ConnectionStrings__Default: 'Host=db;Port=5432;Database=${POSTGRES_DB:-pnvpanel};Username=${POSTGRES_USER:-pnvpanel};Password=${POSTGRES_PASSWORD:-pnvpanel}'
volumes: volumes:
# Data Protection key-ring (шифрование секретов нод at-rest) должен пережить пересоздание # Data Protection key-ring (шифрование секретов нод at-rest) должен пережить пересоздание
# контейнера — иначе расшифровка паролей нод после рестарта станет невозможна. # контейнера — иначе расшифровка паролей нод после рестарта станет невозможна.
- dp_keys:/app/keys - dp_keys:/app/keys
healthcheck: healthcheck:
test: ['CMD', 'curl', '-f', 'http://localhost:8080/health'] test: ['CMD', 'curl', '-f', 'http://localhost:8085/health']
interval: 15s interval: 15s
timeout: 5s timeout: 5s
start_period: 20s start_period: 20s
retries: 5 retries: 5
ports: ports:
- '8080:8080' - '8085:8085'
restart: unless-stopped restart: unless-stopped
volumes: volumes: