chore: move shell scripts under scripts/ and update docs

This commit is contained in:
icy
2025-11-06 17:53:27 +08:00
parent b15b0fb01a
commit 6ca197437d
9 changed files with 68 additions and 62 deletions

View File

@@ -294,8 +294,8 @@ nano config.json # 或使用其他编辑器
#### 步骤2一键启动
```bash
# 方式1使用便捷脚本推荐
chmod +x start.sh
./start.sh start --build
chmod +x scripts/start.sh
./scripts/start.sh start --build
# 方式2直接使用docker compose
@@ -310,10 +310,10 @@ docker compose up -d --build
#### 管理你的系统
```bash
./start.sh logs # 查看日志
./start.sh status # 检查状态
./start.sh stop # 停止服务
./start.sh restart # 重启服务
./scripts/start.sh logs # 查看日志
./scripts/start.sh status # 检查状态
./scripts/start.sh stop # 停止服务
./scripts/start.sh restart # 重启服务
```
**📖 详细的Docker部署教程故障排查和高级配置**