Compare commits
53 Commits
Author | SHA1 | Date | |
---|---|---|---|
ab44e01638 | |||
fbda2bcdde | |||
231f11ea05 | |||
df452d73a0 | |||
105b34664a | |||
415994f1f3 | |||
9a93ec369c | |||
ef221d9c7a | |||
da933f2aa7 | |||
10aa561c52 | |||
2dc64b23e4 | |||
e9186dec84 | |||
7511eba729 | |||
173de2375e | |||
481e1bb38d | |||
0332838752 | |||
35e15a1735 | |||
b8016f4ac7 | |||
|
880221a953 | ||
|
398d6692f8 | ||
|
d616b9ef3a | ||
|
5a16e389c4 | ||
30f3420ee5 | |||
677a3e1dc8 | |||
2ec11a1135 | |||
d70efc6943 | |||
40207d43ff | |||
a3cb815dd1 | |||
2a56247aa1 | |||
efb9210c5a | |||
48d46aa70c | |||
55b70f1a36 | |||
3ac57ce7d1 | |||
8e1a7f11ca | |||
ca1eaa8bff | |||
6ec4a797ca | |||
32ad6d8195 | |||
0976a3975f | |||
60b5a8989b | |||
1e09466e78 | |||
c22af67a06 | |||
6a6dbdc798 | |||
80a938d674 | |||
ddb535ab14 | |||
e29e80b650 | |||
331eda62fc | |||
90e935a49e | |||
6e32209824 | |||
0bb3b7bb28 | |||
f97b6b973b | |||
3fea801d26 | |||
d0a62bfd24 | |||
723f3ec954 |
1
.env
1
.env
@@ -6,5 +6,6 @@ PROXY_HOST=localhost
|
||||
PROXY_PORT=8080
|
||||
|
||||
ACS_TAG=7.4.1.1
|
||||
ATE_AIO_TAG=4.0.0
|
||||
AAMQ_TAG=latest
|
||||
POSTGRES_TAG=13
|
||||
|
@@ -15,24 +15,57 @@ services:
|
||||
-Dmetadata-keystore.password=mp6yc0UD9e
|
||||
-Dmetadata-keystore.aliases=metadata
|
||||
-Dmetadata-keystore.metadata.password=oKIWzVdEdA
|
||||
-Dmetadata-keystore.metadata.algorithm=DESede"
|
||||
-Dmetadata-keystore.metadata.algorithm=DESede
|
||||
"
|
||||
JAVA_OPTS: "
|
||||
-Xms512m -Xmx1g
|
||||
-Ddb.driver=org.postgresql.Driver
|
||||
-Ddb.username=alfresco
|
||||
-Ddb.password=alfresco
|
||||
-Ddb.url=jdbc:postgresql://postgres-acs:5432/alfresco
|
||||
-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
|
||||
-DlocalTransform.core-aio.url=http://transform-core-aio:8090/
|
||||
-Dalfresco-pdf-renderer.url=http://transform-core-aio:8090/
|
||||
-Djodconverter.url=http://transform-core-aio:8090/
|
||||
-Dimg.url=http://transform-core-aio:8090/
|
||||
-Dtika.url=http://transform-core-aio:8090/
|
||||
-Dtransform.misc.url=http://transform-core-aio:8090/
|
||||
-Dcsrf.filter.enabled=false
|
||||
-Dcors.enabled=true
|
||||
-Dcors.allowed.origins=http://localhost:4200,http://localhost:8080,${PROXY_PROTOCOL}://${PROXY_HOST}
|
||||
-Dtransform.service.enabled=false
|
||||
-Dlocal.transform.service.enabled=true
|
||||
-Dsystem.content.eagerOrphanCleanup=true
|
||||
-Dsystem.content.orphanProtectDays=0
|
||||
-Djodconverter.enabled=false
|
||||
"
|
||||
depends_on:
|
||||
- postgres-acs
|
||||
- activemq
|
||||
|
||||
transform-core-aio:
|
||||
image: alfresco/alfresco-transform-core-aio:${ATE_AIO_TAG}
|
||||
|
||||
postgres-acs:
|
||||
image: postgres:${POSTGRES_TAG}
|
||||
environment:
|
||||
POSTGRES_PASSWORD: alfresco
|
||||
POSTGRES_USER: alfresco
|
||||
POSTGRES_DB: alfresco
|
||||
command: postgres -c max_connections=300 -c log_min_messages=LOG
|
||||
|
||||
activemq:
|
||||
image: alfresco/alfresco-activemq:${AAMQ_TAG}
|
||||
environment:
|
||||
ACTIVEMQ_OPTS_MEMORY: -Xms64m -Xmx256m
|
||||
ACTIVEMQ_ADMIN_LOGIN: alfresco
|
||||
ACTIVEMQ_ADMIN_PASSWORD: alfresco
|
||||
|
||||
proxy:
|
||||
build: ./nginx-ingress
|
||||
|
Reference in New Issue
Block a user