Files
TERES_fastapi_backend/docker/stop-ragflow.sh
2025-10-30 14:47:57 +08:00

13 lines
319 B
Bash
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.

#!/bin/bash
# 停止脚本:只停止 ragflow 服务,保留基础服务
echo "停止 ragflow 服务..."
docker compose -p ragflow -f docker-compose.yml down
# 等待一段时间确保完全停止
sleep 10
echo "ragflow 服务已停止"
echo "基础服务postgres、redis、minio、opensearch仍在运行"