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 ACS_TAG=7.3.0
AAMQ_TAG=5.17.1-jre17-centos7 AAMQ_TAG=5.17.1-jre17-centos7
POSTGRES_TAG=13 POSTGRES_TAG=13
ASIE_TAG=2.0.5

View File

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