Files
AIclinicalresearch/Dify部署监控.bat

21 lines
498 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