lucene/solr/docker/scripts/solr-foreground

13 lines
181 B
Bash
Executable File

#!/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 "$@"