Description
The Chinese documentation for installation has an error in the docker compose command.
Current command in Chinese docs (i18n/zh-Hans/docusaurus-plugin-content-docs/current/installation.md):
docker compose --profile gateway up -d
This results in the following error:
no configuration file provided: not found
Expected command (as shown in English docs):
docker compose -f docker/docker-compose.yml --profile gateway up -d
The Chinese documentation is missing the -f docker/docker-compose.yml flag to specify the configuration file path.