Compare commits
99 Commits
ags-backen
...
acs-backen
Author | SHA1 | Date | |
---|---|---|---|
6178fe93b0 | |||
faa633c46c | |||
72026e2ad2 | |||
ab44e01638 | |||
b3c89aa9ce | |||
fbda2bcdde | |||
9f059b6c13 | |||
0b18c583da | |||
40dd43068d | |||
231f11ea05 | |||
2d292ade40 | |||
9af50009c1 | |||
664a47f49c | |||
020c4822fd | |||
105b34664a | |||
415994f1f3 | |||
9a93ec369c | |||
f7c664e7f4 | |||
a24bf1b647 | |||
6d56f610a7 | |||
4748d0e7b6 | |||
299d2fe04d | |||
c60e224a14 | |||
fc74faf57a | |||
da933f2aa7 | |||
10aa561c52 | |||
2dc64b23e4 | |||
e9186dec84 | |||
8a7d6d2016 | |||
e62b0838f2 | |||
3a2220d215 | |||
f0713c90dd | |||
0332838752 | |||
35e15a1735 | |||
|
38def362f6 | ||
|
f3d3293e9e | ||
|
456950f31d | ||
|
6740f23779 | ||
|
880221a953 | ||
|
398d6692f8 | ||
|
2c82f844b1 | ||
|
b805fbbd1a | ||
|
b7c883068a | ||
|
5a16e389c4 | ||
53404852e1 | |||
75743d2391 | |||
078b2ae35c | |||
5ff71f0e3c | |||
30f3420ee5 | |||
677a3e1dc8 | |||
2ec11a1135 | |||
6a8b1e2628 | |||
932159b238 | |||
135739da10 | |||
e660d79ef1 | |||
f036e13180 | |||
40207d43ff | |||
02a2ec72c0 | |||
41b87a9e5e | |||
86ad2bc409 | |||
2a56247aa1 | |||
efb9210c5a | |||
48d46aa70c | |||
720346e9d7 | |||
68e0652872 | |||
b81db4fc0f | |||
c377995a1d | |||
e223fd99a3 | |||
5beadf9f35 | |||
24337f3a13 | |||
04988e43dd | |||
f94f3e82e8 | |||
cb5d306478 | |||
abaa41345a | |||
17f70ea253 | |||
2173a9eb5b | |||
8e1a7f11ca | |||
ca1eaa8bff | |||
32ad6d8195 | |||
0488b3402d | |||
fad6fe1c2a | |||
2789af0bd7 | |||
91da0dedb6 | |||
8d3c4987f0 | |||
701489665a | |||
0976a3975f | |||
0ad2cdf9ad | |||
7bb62f421e | |||
f02d4ff427 | |||
1e09466e78 | |||
1216469feb | |||
6a6dbdc798 | |||
2ac3d013c9 | |||
80a938d674 | |||
ddb535ab14 | |||
331eda62fc | |||
0bb3b7bb28 | |||
f97b6b973b | |||
3fea801d26 |
1
.env
1
.env
@@ -6,6 +6,7 @@ PROXY_HOST=localhost
|
||||
PROXY_PORT=8080
|
||||
|
||||
ACS_TAG=7.4.1.1
|
||||
ATE_AIO_TAG=4.0.0
|
||||
AAMQ_TAG=latest
|
||||
POSTGRES_TAG=13
|
||||
ASIE_TAG=2.0.8.2
|
||||
|
@@ -33,10 +33,17 @@ services:
|
||||
-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=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=false
|
||||
-Dlocal.transform.service.enabled=true
|
||||
-Dsystem.content.eagerOrphanCleanup=true
|
||||
-Dsystem.content.orphanProtectDays=0
|
||||
-Djodconverter.enabled=false
|
||||
@@ -44,6 +51,11 @@ services:
|
||||
depends_on:
|
||||
- postgres-acs
|
||||
- activemq
|
||||
volumes:
|
||||
- acsbin-volume:/usr/local/tomcat/alf_data:rw
|
||||
|
||||
transform-core-aio:
|
||||
image: alfresco/alfresco-transform-core-aio:${ATE_AIO_TAG}
|
||||
|
||||
postgres-acs:
|
||||
image: postgres:${POSTGRES_TAG}
|
||||
@@ -52,6 +64,8 @@ services:
|
||||
POSTGRES_USER: alfresco
|
||||
POSTGRES_DB: alfresco
|
||||
command: postgres -c max_connections=300 -c log_min_messages=LOG
|
||||
volumes:
|
||||
- acsdb-volume:/var/lib/postgresql/data:rw
|
||||
|
||||
search:
|
||||
image: alfresco/alfresco-search-services:${ASIE_TAG}
|
||||
@@ -65,6 +79,8 @@ services:
|
||||
"
|
||||
healthcheck:
|
||||
test: "curl -fsS http://localhost:8983/solr"
|
||||
volumes:
|
||||
- solrindex-volume:/opt/alfresco-search-services/data:rw
|
||||
|
||||
activemq:
|
||||
image: alfresco/alfresco-activemq:${AAMQ_TAG}
|
||||
@@ -72,6 +88,8 @@ services:
|
||||
ACTIVEMQ_OPTS_MEMORY: -Xms64m -Xmx256m
|
||||
ACTIVEMQ_ADMIN_LOGIN: alfresco
|
||||
ACTIVEMQ_ADMIN_PASSWORD: alfresco
|
||||
volumes:
|
||||
- activemq-volume:/opt/activemq/data:rw
|
||||
|
||||
proxy:
|
||||
build: ./nginx-ingress
|
||||
@@ -80,3 +98,13 @@ services:
|
||||
- 8080:8080
|
||||
depends_on:
|
||||
- platform
|
||||
|
||||
volumes:
|
||||
acsbin-volume:
|
||||
driver: local
|
||||
acsdb-volume:
|
||||
driver: local
|
||||
activemq-volume:
|
||||
driver: local
|
||||
solrindex-volume:
|
||||
driver: local
|
||||
|
Reference in New Issue
Block a user