不知名提交

This commit is contained in:
2025-12-13 20:53:50 +08:00
parent c147502b4d
commit 1221d6faf1
120 changed files with 11005 additions and 1092 deletions

19
stop.sh Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
set -e
echo "======================================"
echo " InfoGenie Docker 容器停止脚本"
echo "======================================"
echo ""
echo "正在停止容器..."
docker-compose down
if [ $? -ne 0 ]; then
echo "❌ 停止失败"
exit 1
fi
echo ""
echo "✅ 容器已停止"
echo ""