This is an automated email from the ASF dual-hosted git repository.
rkk pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/sdap-nexus.git
The following commit(s) were added to refs/heads/develop by this push:
new 4a386a5 update quickstart with updated solr command (#298)
4a386a5 is described below
commit 4a386a53ec0390a45c77f2032fe2ce87ca7d7525
Author: Stepheny Perez <[email protected]>
AuthorDate: Mon Jun 10 10:40:56 2024 -0400
update quickstart with updated solr command (#298)
Co-authored-by: Riley Kuttruff <[email protected]>
---
CHANGELOG.md | 1 +
docs/quickstart.rst | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b39a232..95dbb11 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 01200a0..f393493 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.