docs: update Dify deployment status - postpone to later, start Day 6

This commit is contained in:
AI Clinical Dev Team
2025-10-10 17:08:09 +08:00
parent 5184269c91
commit 10e33a1c2d
5 changed files with 466 additions and 9 deletions

20
Dify部署监控.bat Normal file
View File

@@ -0,0 +1,20 @@
@echo off
chcp 65001 >nul
echo ====================================
echo Dify 部署状态监控
echo ====================================
echo.
echo 正在检查Docker容器状态...
echo.
docker ps -a --format "table {{.Names}}\t{{.Image}}\t{{.Status}}"
echo.
echo ====================================
echo.
echo 检查Dify相关容器
docker ps -a | findstr /i "dify weaviate sandbox nginx redis"
echo.
echo ====================================
echo.
echo 按任意键退出...
pause >nul