[Solr] Use new Solr base

This commit is contained in:
andryyy
2019-07-28 21:35:10 +02:00
parent 97c2fe9fe1
commit fb22540f74
2 changed files with 19 additions and 7 deletions

View File

@@ -37,10 +37,10 @@ if [[ "${1}" == "--bootstrap" ]]; then
rm /opt/solr/server/solr/configsets/_default/conf/managed-schema
echo "Starting local Solr instance to setup configuration"
su-exec solr start-local-solr
gosu solr start-local-solr
echo "Creating core \"dovecot-fts\""
su-exec solr /opt/solr/bin/solr create -c "dovecot-fts"
gosu solr /opt/solr/bin/solr create -c "dovecot-fts"
# See https://github.com/docker-solr/docker-solr/issues/27
echo "Checking core"
@@ -52,10 +52,10 @@ if [[ "${1}" == "--bootstrap" ]]; then
echo "Created core \"dovecot-fts\""
echo "Stopping local Solr"
su-exec solr stop-local-solr
gosu solr stop-local-solr
exit 0
fi
exec su-exec solr solr-foreground
exec gosu solr solr-foreground