Copilot commented on code in PR #2963: URL: https://github.com/apache/hugegraph/pull/2963#discussion_r2973422610
########## hugegraph-server/README.md: ########## @@ -9,3 +9,24 @@ HugeGraph Server consists of two layers of functionality: the graph engine layer - Storage Layer: - Storage Backend: Supports multiple built-in storage backends (RocksDB/Memory/HStore/HBase/...) and allows users to extend custom backends without modifying the existing source code. + +## Docker + +### Standalone Mode + +```bash +docker run -itd --name=hugegraph -p 8080:8080 hugegraph/hugegraph:1.7.0 +``` + +> Use release tags (e.g., `1.7.0`) for stable deployments. The `latest` tag is intended for testing or development only. + +### Distributed Mode (PD + Store + Server) + +For a full distributed deployment, use the compose file at the repository root: Review Comment: The text says the distributed compose file is “at the repository root”, but the example immediately uses `cd docker` and the file actually lives under the root `docker/` directory. Consider rewording to avoid confusing readers about where the compose file is located (e.g., “in the `docker/` directory at the repository root”). ```suggestion For a full distributed deployment, use the compose file in the `docker/` directory at the repository root: ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
