Compare commits

..

7 Commits

View File

@@ -9,7 +9,7 @@ services:
environment: environment:
JAVA_OPTS: " JAVA_OPTS: "
-Ddb.driver=org.postgresql.Driver -Ddb.driver=org.postgresql.Driver
-Dsolr.host=search -Ddb.url=jdbc:postgresql://postgres-acs:5432/alfresco
-Dalfresco.host=${PROXY_HOST} -Dalfresco.host=${PROXY_HOST}
-Dalfresco.port=${PROXY_PORT} -Dalfresco.port=${PROXY_PORT}
-Dalfresco.protocol=${PROXY_PROTOCOL} -Dalfresco.protocol=${PROXY_PROTOCOL}
@@ -18,18 +18,18 @@ services:
depends_on: depends_on:
- postgres-acs - postgres-acs
- activemq - activemq
volumes:
- acsbin-volume:/usr/local/tomcat/alf_data:rw
postgres-acs: postgres-acs:
image: postgres:latest image: postgres:latest
volumes:
search: - acsdb-volume:/var/lib/postgresql/data:rw
image: alfresco/alfresco-search-services:latest
environment:
- SOLR_ALFRESCO_HOST=platform
- SOLR_SOLR_HOST=search
activemq: activemq:
image: alfresco/alfresco-activemq:latest image: alfresco/alfresco-activemq:latest
volumes:
- activemq-volume:/opt/activemq/data:rw
proxy: proxy:
build: ./nginx-ingress build: ./nginx-ingress
@@ -38,3 +38,11 @@ services:
- 8080:8080 - 8080:8080
depends_on: depends_on:
- platform - platform
volumes:
acsbin-volume:
driver: local
acsdb-volume:
driver: local
activemq-volume:
driver: local