Files
AIclinicalresearch/Dify部署监控.bat
AI Clinical Dev Team 239c7ea85e feat: Day 21-22 - knowledge base frontend completed, fix CORS and file upload issues
- Complete knowledge base list and detail pages
- Complete document upload component
- Fix CORS config (add PUT/DELETE method support)
- Fix file upload issues (disabled state and beforeUpload return value)
- Add detailed debug logs (cleaned up)
- Create Day 21-22 completion summary document
2025-10-11 15:40:12 +08:00

24 lines
501 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@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