From a835e974400fef7b5936b722212eb68fc69f2904 Mon Sep 17 00:00:00 2001 From: xiaoping Date: Fri, 30 May 2025 13:10:59 +0800 Subject: [PATCH] Update docker-compose.yml (#7962) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If the name field is not specified, Docker Compose will default to using `docker` as the project name. This may cause conflicts with other default projects, leading to unintended operations when executing `docker compose` commands. ### What problem does this PR solve? When executing Docker Compose commands, interference occurs between multiple default projects, leading to operational chaos.​ ### Type of change - [x] Other (please describe): --- docker/docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 7378ab4be..61adad71f 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -1,3 +1,5 @@ +name: ragflow + include: - ./docker-compose-base.yml