diff --git a/CHANGELOG.md b/CHANGELOG.md index b39a232e..95dbb11b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - SDAP-515: - Improved error handling with connections to remote SDAP deployments +- Updated quickstart docs with corrected command for running Solr via Docker ### Security ## [1.2.0] - 2023-11-22 diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 01200a0c..f3934938 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -143,7 +143,7 @@ To start Solr using a volume mount and expose the admin webapp on port 8983: export SOLR_DATA=~/nexus-quickstart/solr mkdir -p ${SOLR_DATA} - docker run --name solr --network sdap-net -v ${SOLR_DATA}/:/bitnami -p 8983:8983 -e ZK_HOST="host.docker.internal:2181/solr" -d ${REPO}/sdap-solr-cloud:${SOLR_VERSION} + docker run --name solr --network sdap-net -v ${SOLR_DATA}/:/bitnami -p 8983:8983 -e SDAP_ZK_SERVICE_HOST="host.docker.internal" -d ${REPO}/sdap-solr-cloud:${SOLR_VERSION} This will start an instance of Solr. To initialize it, we need to run the ``solr-cloud-init`` image.