From 1f7a035340361d32d8351dbc6b7ac1ee9900e88b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B9=9B=E9=9C=B2=E5=85=88=E7=94=9F?= Date: Thu, 4 Sep 2025 18:47:27 +0800 Subject: [PATCH] before docker-compose up, first down it,and cleans. (#9908) ### What problem does this PR solve? _Briefly describe what this PR aims to solve. Include background context that will help reviewers understand the purpose of the PR._ Fix the issue in ci. [ci err](https://github.com/infiniflow/ragflow/actions/runs/17452439789/job/49559702590?pr=9894) ``` Container ragflow-redis Error response from daemon: Conflict. The container name "/ragflow-redis" is already in use by container "b6cbde4d186ffba701f6e2a85f37e1d053d7197adb2938547f1df08cfcadf355". You have to remove (or rename) that container to be able to reuse that name. Error response from daemon: Conflict. The container name "/ragflow-redis" is already in use by container "b6cbde4d186ffba701f6e2a85f37e1d053d7197adb2938547f1df08cfcadf355". You have to remove (or rename) that container to be able to reuse that name. Error: Process completed with exit code 1. ``` ### Type of change - [x] Refactoring - [x] Performance Improvement Signed-off-by: zhanluxianshen --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b5ea772d5..f231dcb07 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -67,6 +67,7 @@ jobs: - name: Start ragflow:nightly-slim run: | + sudo docker compose -f docker/docker-compose.yml down --volumes --remove-orphans echo -e "\nRAGFLOW_IMAGE=infiniflow/ragflow:nightly-slim" >> docker/.env sudo docker compose -f docker/docker-compose.yml up -d