imbajin commented on code in PR #2963:
URL: https://github.com/apache/hugegraph/pull/2963#discussion_r2972523645


##########
hugegraph-store/README.md:
##########
@@ -358,11 +358,12 @@ docker run -d \
   -p 8520:8520 \
   -p 8500:8500 \
   -p 8510:8510 \
-  -v /path/to/conf:/hugegraph-store/conf \
+  -e HG_STORE_PD_ADDRESS=<pd-ip>:8686 \
+  -e HG_STORE_GRPC_HOST=<your-ip> \
+  -e HG_STORE_RAFT_ADDRESS=<your-ip>:8510 \
   -v /path/to/storage:/hugegraph-store/storage \
-  -e PD_ADDRESS=192.168.1.10:8686,192.168.1.11:8686 \
   --name hugegraph-store \
-  hugegraph-store:latest
+  hugegraph/store:latest

Review Comment:
   This run line no longer matches the build step above: the build command 
still tags `hugegraph-store:latest`, but this command now expects 
`hugegraph/store:latest`. As written, the local build/run example breaks unless 
the user adds an extra `docker tag` step. If the intent is a self-contained 
local example, keep both commands on the same image name, for example:
   
   ```suggestion
     hugegraph-store:latest
   ```



-- 
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]

Reply via email to