diff --git a/docker-compose/community-docker-compose.yml b/docker-compose/community-docker-compose.yml index 815c7eda8..09bd58e01 100644 --- a/docker-compose/community-docker-compose.yml +++ b/docker-compose/community-docker-compose.yml @@ -11,7 +11,7 @@ version: "2" services: alfresco: image: alfresco/alfresco-content-repository-community:7.2.0-M2 - mem_limit: 1500m + mem_limit: 1600m environment: JAVA_TOOL_OPTIONS: " -Dencryption.keystore.type=JCEKS @@ -31,7 +31,8 @@ services: -Dsolr.host=solr6 -Dsolr.port=8983 -Dsolr.http.connection.timeout=1000 - -Dsolr.secureComms=none + -Dsolr.secureComms=secret + -Dsolr.sharedSecret=secret -Dsolr.base.url=/solr -Dindex.subsystem.name=solr6 -Dshare.host=127.0.0.1 @@ -81,19 +82,23 @@ services: - "5432:5432" solr6: - image: alfresco/alfresco-search-services:2.0.2 + image: quay.io/alfresco/search-services:2.1.0-SNAPSHOT mem_limit: 2g environment: # Solr needs to know how to register itself with Alfresco - - SOLR_ALFRESCO_HOST=alfresco - - SOLR_ALFRESCO_PORT=8080 + SOLR_ALFRESCO_HOST: "alfresco" + SOLR_ALFRESCO_PORT: "8080" # Alfresco needs to know how to call solr - - SOLR_SOLR_HOST=solr6 - - SOLR_SOLR_PORT=8983 + SOLR_SOLR_HOST: "solr6" + SOLR_SOLR_PORT: "8983" # Create the default alfresco and archive cores - - SOLR_CREATE_ALFRESCO_DEFAULTS=alfresco,archive - # HTTP by default - - ALFRESCO_SECURE_COMMS=none + SOLR_CREATE_ALFRESCO_DEFAULTS: "alfresco,archive" + # HTTPS or SECRET + ALFRESCO_SECURE_COMMS: "secret" + # SHARED SECRET VALUE + JAVA_TOOL_OPTIONS: " + -Dalfresco.secureComms.secret=secret + " ports: - "8083:8983" # Browser port diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index 49a089eb3..8e380cc8b 100644 --- a/docker-compose/docker-compose.yml +++ b/docker-compose/docker-compose.yml @@ -32,7 +32,8 @@ services: -Ddb.url=jdbc:postgresql://postgres:5432/alfresco -Dsolr.host=solr6 -Dsolr.port=8983 - -Dsolr.secureComms=none + -Dsolr.secureComms=secret + -Dsolr.sharedSecret=secret -Dsolr.base.url=/solr -Dindex.subsystem.name=solr6 -Dshare.host=127.0.0.1 @@ -115,19 +116,23 @@ services: - "5432:5432" solr6: - image: alfresco/alfresco-search-services:2.0.2 + image: quay.io/alfresco/search-services:2.1.0-SNAPSHOT mem_limit: 2g environment: # Solr needs to know how to register itself with Alfresco - - SOLR_ALFRESCO_HOST=alfresco - - SOLR_ALFRESCO_PORT=8080 + SOLR_ALFRESCO_HOST: "alfresco" + SOLR_ALFRESCO_PORT: "8080" # Alfresco needs to know how to call solr - - SOLR_SOLR_HOST=solr6 - - SOLR_SOLR_PORT=8983 + SOLR_SOLR_HOST: "solr6" + SOLR_SOLR_PORT: "8983" # Create the default alfresco and archive cores - - SOLR_CREATE_ALFRESCO_DEFAULTS=alfresco,archive - # HTTP by default - - ALFRESCO_SECURE_COMMS=none + SOLR_CREATE_ALFRESCO_DEFAULTS: "alfresco,archive" + # HTTPS or SECRET + ALFRESCO_SECURE_COMMS: "secret" + # SHARED SECRET VALUE + JAVA_TOOL_OPTIONS: " + -Dalfresco.secureComms.secret=secret + " ports: - "8083:8983" # Browser port