mirror of https://github.com/apache/lucene.git
13 lines
181 B
Plaintext
13 lines
181 B
Plaintext
|
#!/bin/bash
|
||
|
#
|
||
|
# Run the initdb, then start solr in the foreground
|
||
|
set -e
|
||
|
|
||
|
if [[ "$VERBOSE" == "yes" ]]; then
|
||
|
set -x
|
||
|
fi
|
||
|
|
||
|
. /opt/docker-solr/scripts/run-initdb
|
||
|
|
||
|
exec solr-fg "$@"
|