Compare commits
32
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ee55800128 | ||
|
|
57e5ee1da5 | ||
|
|
9102440651 | ||
|
|
6a22cc261c | ||
|
|
7fec1a55ac | ||
|
|
291176c213 | ||
|
|
37e13d6252 | ||
|
|
54754890d2 | ||
|
|
ce38fae8fb | ||
|
|
c5171fdb51 | ||
|
|
24de207c37 | ||
|
|
f84b973c60 | ||
|
|
07e0d14f42 | ||
|
|
94a2a3a259 | ||
|
|
dc3e42c872 | ||
|
|
b57a70a983 | ||
|
|
b59eae3b5f | ||
|
|
7afbf14209 | ||
|
|
79566e47de | ||
|
|
dc3dd8ca74 | ||
|
|
ae7b02d6ea | ||
|
|
395cc67cc0 | ||
|
|
b0fc0970aa | ||
|
|
ab342d698a | ||
|
|
82b58f638c | ||
|
|
5b65b4817e | ||
|
|
5a929f6317 | ||
|
|
f66e9aa1e8 | ||
|
|
cf7e16fdcc | ||
|
|
2071957b17 | ||
|
|
f61ee9d7dc | ||
|
|
b01b78f842 |
+12
-10
@@ -19,10 +19,10 @@ services:
|
|||||||
"
|
"
|
||||||
JAVA_OPTS: "
|
JAVA_OPTS: "
|
||||||
-Xms512m -Xmx1g
|
-Xms512m -Xmx1g
|
||||||
-Ddb.driver=org.postgresql.Driver
|
-Ddb.driver=com.mysql.jdbc.Driver
|
||||||
-Ddb.username=alfresco
|
-Ddb.username=alfresco
|
||||||
-Ddb.password=alfresco
|
-Ddb.password=alfresco
|
||||||
-Ddb.url=jdbc:postgresql://postgres-acs:5432/alfresco
|
-Ddb.url=jdbc:mysql://mysql-acs:3306/alfresco?useUnicode=yes\\&characterEncoding=UTF-8\\&useSSL=false
|
||||||
-Dindex.subsystem.name=solr6
|
-Dindex.subsystem.name=solr6
|
||||||
-Dsolr.host=search
|
-Dsolr.host=search
|
||||||
-Dsolr.secureComms=secret
|
-Dsolr.secureComms=secret
|
||||||
@@ -51,10 +51,11 @@ services:
|
|||||||
-Djodconverter.enabled=false
|
-Djodconverter.enabled=false
|
||||||
"
|
"
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres-acs
|
- mysql-acs
|
||||||
- activemq
|
- activemq
|
||||||
volumes:
|
volumes:
|
||||||
- acsbin-volume:/usr/local/tomcat/alf_data:rw
|
- acsbin-volume:/usr/local/tomcat/alf_data:rw
|
||||||
|
- /usr/share/java/mysql.jar:/usr/local/tomcat/lib/mysql.jar:ro
|
||||||
|
|
||||||
transform-core-aio:
|
transform-core-aio:
|
||||||
image: alfresco/alfresco-transform-core-aio:${ATE_AIO_TAG}
|
image: alfresco/alfresco-transform-core-aio:${ATE_AIO_TAG}
|
||||||
@@ -74,15 +75,15 @@ services:
|
|||||||
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||||
"
|
"
|
||||||
|
|
||||||
postgres-acs:
|
mysql-acs:
|
||||||
image: postgres:${POSTGRES_TAG}
|
image: mysql:5.7
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_PASSWORD: alfresco
|
- MYSQL_RANDOM_ROOT_PASSWORD=true
|
||||||
POSTGRES_USER: alfresco
|
- MYSQL_PASSWORD=alfresco
|
||||||
POSTGRES_DB: alfresco
|
- MYSQL_USER=alfresco
|
||||||
command: postgres -c max_connections=300 -c log_min_messages=LOG
|
- MYSQL_DATABASE=alfresco
|
||||||
volumes:
|
volumes:
|
||||||
- acsdb-volume:/var/lib/postgresql/data:rw
|
- acsdb-volume:/var/lib/mysql:rw
|
||||||
|
|
||||||
search:
|
search:
|
||||||
image: alfresco/alfresco-search-services:${ASIE_TAG}
|
image: alfresco/alfresco-search-services:${ASIE_TAG}
|
||||||
@@ -126,3 +127,4 @@ volumes:
|
|||||||
driver: local
|
driver: local
|
||||||
solrindex-volume:
|
solrindex-volume:
|
||||||
driver: local
|
driver: local
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user