Compare commits
23 Commits
acs-base-v
...
propagate/
Author | SHA1 | Date | |
---|---|---|---|
|
07e0d14f42 | ||
|
94a2a3a259 | ||
|
dc3e42c872 | ||
|
d616b9ef3a | ||
b59eae3b5f | |||
dc3dd8ca74 | |||
ae7b02d6ea | |||
d70efc6943 | |||
a3cb815dd1 | |||
82b58f638c | |||
55b70f1a36 | |||
5b65b4817e | |||
5a929f6317 | |||
3ac57ce7d1 | |||
f66e9aa1e8 | |||
6ec4a797ca | |||
60b5a8989b | |||
c22af67a06 | |||
e29e80b650 | |||
90e935a49e | |||
6e32209824 | |||
d0a62bfd24 | |||
723f3ec954 |
@@ -5,25 +5,47 @@ version: "2"
|
||||
|
||||
services:
|
||||
platform:
|
||||
image: alfresco/alfresco-content-repository:latest
|
||||
image: alfresco/alfresco-content-repository-community:6.2.0-ga
|
||||
mem_limit: 1700m
|
||||
environment:
|
||||
JAVA_OPTS: "
|
||||
-Ddb.driver=org.postgresql.Driver
|
||||
-Ddb.url=jdbc:postgresql://postgres-acs:5432/alfresco
|
||||
-Ddb.driver=com.mysql.jdbc.Driver
|
||||
-Ddb.username=alfresco
|
||||
-Ddb.password=alfresco
|
||||
-Ddb.url=jdbc:mysql://mysql-acs:3306/alfresco?useUnicode=yes\\&characterEncoding=UTF-8\\&useSSL=false
|
||||
-Dindex.subsystem.name=noindex
|
||||
-Dalfresco.host=${PROXY_HOST}
|
||||
-Dalfresco.port=${PROXY_PORT}
|
||||
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||
-Daos.baseUrlOverwrite=${PROXY_PROTOCOL}://${PROXY_HOST}:${PROXY_PORT}/alfresco/aos
|
||||
-Dmessaging.broker.url=\"failover:(nio://activemq:61616)?timeout=3000&jms.useCompression=true\"
|
||||
-Ddeployment.method=DOCKER_COMPOSE
|
||||
-Dcsrf.filter.enabled=false
|
||||
-XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80
|
||||
|
||||
-Dtransform.service.enabled=false
|
||||
-Dlocal.transform.service.enabled=false
|
||||
|
||||
-Dsystem.content.eagerOrphanCleanup=true
|
||||
-Dsystem.content.orphanProtectDays=0
|
||||
-Djodconverter.enabled=false
|
||||
"
|
||||
depends_on:
|
||||
- postgres-acs
|
||||
- mysql-acs
|
||||
- activemq
|
||||
|
||||
postgres-acs:
|
||||
image: postgres:latest
|
||||
mysql-acs:
|
||||
image: mysql:5.7
|
||||
mem_limit: 512m
|
||||
environment:
|
||||
- MYSQL_RANDOM_ROOT_PASSWORD=true
|
||||
- MYSQL_PASSWORD=alfresco
|
||||
- MYSQL_USER=alfresco
|
||||
- MYSQL_DATABASE=alfresco
|
||||
|
||||
activemq:
|
||||
image: alfresco/alfresco-activemq:latest
|
||||
image: alfresco/alfresco-activemq:5.15.8
|
||||
mem_limit: 256m
|
||||
|
||||
proxy:
|
||||
build: ./nginx-ingress
|
||||
|
Reference in New Issue
Block a user