Update API and WebSocket base URLs to use environment variables for better configuration management

This commit is contained in:
liu
2026-01-30 00:45:04 +08:00
parent 197ce5e7ea
commit 246515b43e
11 changed files with 310 additions and 2 deletions

14
docker/stop.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# MangTool Docker 停止脚本
set -e
cd "$(dirname "$0")"
echo ">>> 正在停止 MangTool 容器..."
docker compose down
if [ $? -eq 0 ]; then
echo "✅ 已停止并删除容器"
else
echo "❌ 停止失败"
exit 1
fi