Change panel port from 8000 to 4000

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
test2
2026-07-25 21:13:26 +03:00
co-authored by Cursor
parent 85a2800870
commit 35d3a3b888
3 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -1,5 +1,5 @@
services:
# Domain in Dokploy → service `panel`, port `8000`
# Domain in Dokploy → service `panel`, port `4000`
panel:
build:
context: .
@@ -9,9 +9,9 @@ services:
postgres:
condition: service_healthy
expose:
- "8000"
- "4000"
ports:
- "${PANEL_PORT:-8000}:8000"
- "${PANEL_PORT:-4000}:4000"
environment:
APP_NAME: ${APP_NAME:-VpnPanel}
SECRET_KEY: ${SECRET_KEY:-change-me-to-a-long-random-string}
@@ -48,7 +48,7 @@ services:
- vpn_internal
- dokploy-network
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:8000/health"]
test: ["CMD", "curl", "-f", "http://127.0.0.1:4000/health"]
interval: 15s
timeout: 5s
retries: 10