mirror of
https://github.com/apache/lucene.git
synced 2025-02-15 14:35:50 +00:00
The Dockerfile should not initialize /var/solr's contents because this is confusing and redundant with init_var_solr.sh. No need for init_var_solr.sh to echo what it does; VERBOSE can be used to accomplish that. Separate CHANGES.md for Docker and contrib modules.
25 lines
681 B
Bash
Executable File
25 lines
681 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Create a core on disk and then run solr in the foreground
|
|
# arguments are: corename configdir
|
|
# To simply create a core:
|
|
# docker run -P -d solr solr-precreate mycore
|
|
# To create a core from mounted config:
|
|
# docker run -P -d -v $PWD/myconfig:/myconfig solr solr-precreate mycore /myconfig
|
|
# To create a core in a mounted directory:
|
|
# mkdir myvarsolr; chown 8983:8983 myvarsolr
|
|
# docker run -it --rm -P -v $PWD/myvarsolr://var/solr solr solr-precreate mycore
|
|
set -e
|
|
|
|
echo "Executing $0" "$@"
|
|
|
|
if [[ "${VERBOSE:-}" == "yes" ]]; then
|
|
set -x
|
|
fi
|
|
|
|
. /opt/docker-solr/scripts/run-initdb
|
|
|
|
/opt/docker-solr/scripts/precreate-core "$@"
|
|
|
|
exec solr-fg
|