mirror of
https://github.com/Alfresco/SearchServices.git
synced 2025-09-10 14:11:25 +00:00
The changes include the following: * The python scripts for e2e environment creation were moved to this code base * Mirror to community * Docker image check * Unit, integration and e2e tests * "Snapshots": "latest" docker image from master in quay.io, docker images for "release" branches to quay.io, "master" and * "release" branches snapshots to nexus * Releases: nexus, s3 staging bucket, quay.io and dockerhub * Fix for https://issues.alfresco.com/jira/browse/SEARCH-2389 The build is using branches only.
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
|