malliaridis commented on code in PR #2674: URL: https://github.com/apache/solr/pull/2674#discussion_r1735137857
########## solr/solr-ref-guide/modules/deployment-guide/pages/docker-faq.adoc: ########## @@ -135,7 +135,7 @@ For example: [source,bash] ---- -docker run -it solr bin/solr start -f -h myhostname +docker run -it solr bin/solr start -f --h myhostname Review Comment: ```suggestion docker run -it solr bin/solr start -f --host myhostname ``` Here as well? ########## solr/solr-ref-guide/modules/deployment-guide/pages/docker-faq.adoc: ########## @@ -107,17 +107,17 @@ To run the Solr server: docker run -it solr ---- -Here "solr" is the name of the image, and there is no specific command, so the image defaults to run the "solr" command with "-f" to run it in the foreground. +Here "solr" is the name of the image, and there is no specific command, so the image defaults to run the "solr" command with "start -f" to run it in the foreground. To run the Solr server with extra arguments: [source,bash] ---- -docker run -it solr -h myhostname +docker run -it solr --host myhostname ---- This is the same as the previous one, but an additional argument is passed. -The image will run the "solr" command with "-f -h myhostname". +The image will run the "solr" command with "-f --h myhostname". Review Comment: ```suggestion The image will run the "solr" command with "-f --host myhostname". ``` I think you meant `--host` here? -- 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]
