From b4abbe5d933420f2538d93b8a8e69db4fe84d1e6 Mon Sep 17 00:00:00 2001
From: ooo oo <106524776+ooooo-create@users.noreply.github.com>
Date: Sat, 6 Apr 2024 19:43:14 +0800
Subject: [PATCH] docs: fix a bash command (#235)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

### What problem does this PR solve?

use `docker compose up -f docker-compose-CN.yml -d`
will cause

![图片](https://github.com/infiniflow/ragflow/assets/106524776/1414f537-fe5b-42b0-8b01-c0c75fe6020d)
update to `docker compose -f docker-compose-CN.yaml up -d`


### Type of change

- [x] Documentation Update
---
 README_zh.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README_zh.md b/README_zh.md
index 0f9960f..4dcc5cd 100644
--- a/README_zh.md
+++ b/README_zh.md
@@ -153,7 +153,7 @@
 > 所有系统配置都需要通过系统重启生效:
 >
 > ```bash
-> $ docker compose up -f docker-compose-CN.yml -d
+> $ docker compose -f docker-compose-CN.yml up -d
 > ```
 
 ## 🛠️ 源码编译、安装 Docker 镜像
-- 
GitLab