chore: 将 web 端口由 5173 调整为 5273

This commit is contained in:
caoxiaozhu
2026-06-17 14:37:50 +08:00
parent 0d525fa64c
commit 09a66c72cb
5 changed files with 10 additions and 10 deletions

View File

@@ -20,7 +20,7 @@ services:
QDRANT_URL: "http://qdrant:6333"
LIGHTRAG_WORKSPACE: "x_financial_knowledge"
ports:
- "${WEB_PORT:-5173}:${WEB_PORT:-5173}"
- "${WEB_PORT:-5273}:${WEB_PORT:-5273}"
- "${SERVER_PORT:-8000}:${SERVER_PORT:-8000}"
- "2223:22"
volumes:
@@ -59,7 +59,7 @@ services:
cd /app &&
./start.sh all
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://127.0.0.1:${WEB_PORT:-5173}/ >/dev/null || exit 1"]
test: ["CMD-SHELL", "curl -fsS http://127.0.0.1:${WEB_PORT:-5273}/ >/dev/null || exit 1"]
interval: 15s
timeout: 5s
retries: 10