mirror of
https://github.com/Alfresco/SearchServices.git
synced 2026-09-16 18:12:56 +00:00
18 lines
605 B
Plaintext
18 lines
605 B
Plaintext
build:
|
|
context: ./${SOLR_HOST}
|
|
environment:
|
|
#Solr needs to know how to register itself with Alfresco
|
|
SOLR_ALFRESCO_HOST: "alfresco"
|
|
SOLR_ALFRESCO_PORT: "${ALFRESCO_PORT}"
|
|
#Alfresco needs to know how to call solr
|
|
SOLR_SOLR_HOST: "${SOLR_HOST}"
|
|
SOLR_SOLR_PORT: "8983"
|
|
#Create the default alfresco and archive cores
|
|
SOLR_CREATE_ALFRESCO_DEFAULTS: "alfresco,archive"
|
|
#Enable Spellcheck by setting to true
|
|
ENABLE_SPELLCHECK: "${SEARCH_ENABLE_SPELLCHECK}"
|
|
#Disable Cascade Tracking
|
|
DISABLE_CASCADE_TRACKING: "${DISABLE_CASCADE_TRACKING}"
|
|
ports:
|
|
- ${EXTERNAL_PORT}:8983 #Browser port
|