The Solr base image contains a customized SOLR search engine. It contains Hybris-specific modifications and extensions for better use with our platform. It can be run as standalone or cloud setup. Cloud setup requires zookeeper (also provided as base image)
Running the Solr Image in a Standalone ModeTo run the Solr image in the standalone mode, provide it with a default command, as shown in the sample docker-compose.yaml:
solr:
image: ybase_solr
command: default
volumes:
- ./state/solr:/opt/solr/server/solr/cores
Running the Solr Image in the Cloud ModeTo run Solr in the cloud mode:
-
pass it the cloud startup command
-
mount a data core volume for each instance
For the cloud mode, you also need zookeeper for managing the configuration.
See the sample docker-compose.yaml:
zookeeper1:
image: ybase_zookeeper



