Merge commit '9f75b4439d19154e3aaa48e19d05451530333613' into acs-search-persist.acs-search-base

This commit is contained in:
Brian Long 2020-12-26 13:47:30 -05:00
commit e223fd99a3
2 changed files with 16 additions and 2 deletions

11
.env
View File

@ -1,3 +1,10 @@
BASEDIR=~ EXTERNAL_RESOURCE_DIR=~
ALFRESCO_DIR=${BASEDIR}/alfresco ALFRESCO_DIR=${EXTERNAL_RESOURCE_DIR}/alfresco
ALFRESCO_LICENSE_DIR=${ALFRESCO_DIR}/license ALFRESCO_LICENSE_DIR=${ALFRESCO_DIR}/license
PROXY_PLATFORM_PROTOCOL=http
PROXY_PLATFORM_HOST=localhost
PROXY_PLATFORM_PORT=8080
PROXY_SHARE_PROTOCOL=http
PROXY_SHARE_HOST=localhost
PROXY_SHARE_PORT=8080

View File

@ -8,8 +8,15 @@ services:
image: alfresco/alfresco-content-repository:latest image: alfresco/alfresco-content-repository:latest
environment: environment:
JAVA_OPTS: " JAVA_OPTS: "
-Ddb.driver=org.postgresql.Driver
-Ddb.url=jdbc:postgresql://postgres-acs:5432/alfresco -Ddb.url=jdbc:postgresql://postgres-acs:5432/alfresco
-Dsolr.host=search -Dsolr.host=search
-Dshare.host=${PROXY_SHARE_HOST}
-Dshare.port=${PROXY_SHARE_PORT}
-Dshare.protocol=${PROXY_SHARE_PROTOCOL}
-Dalfresco.host=${PROXY_PLATFORM_HOST}
-Dalfresco.port=${PROXY_PLATFORM_PORT}
-Dalfresco.protocol=${PROXY_PLATFORM_PROTOCOL}
-Dmessaging.broker.url=\"failover:(nio://activemq:61616)?timeout=3000&jms.useCompression=true\" -Dmessaging.broker.url=\"failover:(nio://activemq:61616)?timeout=3000&jms.useCompression=true\"
" "
depends_on: depends_on: