parameterized ASIE version; enabled secret comms

This commit is contained in:
Brian Long 2022-11-01 15:07:51 -04:00
parent 5b4069427e
commit 9899d03da9
2 changed files with 10 additions and 3 deletions

1
.env
View File

@ -8,3 +8,4 @@ PROXY_PORT=8080
ACS_TAG=7.3.0
AAMQ_TAG=5.17.1-jre17-centos7
POSTGRES_TAG=13
ASIE_TAG=2.0.5

View File

@ -18,6 +18,8 @@ services:
JAVA_OPTS: "
-Ddb.driver=org.postgresql.Driver
-Dsolr.host=search
-Dsolr.secureComms=secret
-Dsolr.sharedSecret=alfresco-secret
-Dalfresco.host=${PROXY_HOST}
-Dalfresco.port=${PROXY_PORT}
-Dalfresco.protocol=${PROXY_PROTOCOL}
@ -31,10 +33,14 @@ services:
image: postgres:${POSTGRES_TAG}
search:
image: alfresco/alfresco-search-services:latest
image: alfresco/alfresco-search-services:${ASIE_TAG}
environment:
- SOLR_ALFRESCO_HOST=platform
- SOLR_SOLR_HOST=search
SOLR_ALFRESCO_HOST: platform
SOLR_SOLR_HOST: search
ALFRESCO_SECURE_COMMS: secret
JAVA_TOOL_OPTIONS: "
-Dalfresco.secureComms.secret=alfresco-secret
"
activemq:
image: alfresco/alfresco-activemq:${AAMQ_TAG}