mirror of
https://github.com/apache/lucene.git
synced 2025-02-10 03:55:46 +00:00
* Removed docker plugin from gradle builds. * Removed package docker image. * Tasks now have correct inputs/outputs/dependencies. * Move gradle help text to docker folder. * Reduce duplicated Docker layer by doing file removal and chmod in another stage. Co-authored-by: David Smiley <dsmiley@apache.org>
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
|