Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
24de207c37 | ||
|
|
f84b973c60 | ||
|
|
20ff424c6a | ||
|
|
5925d0dada | ||
|
|
38def362f6 | ||
|
|
f3d3293e9e | ||
|
|
07e0d14f42 | ||
|
|
94a2a3a259 | ||
|
|
2c82f844b1 | ||
|
|
b805fbbd1a | ||
|
|
dc3e42c872 | ||
|
|
b7c883068a | ||
|
|
b57a70a983 | ||
|
|
b59eae3b5f | ||
|
|
7afbf14209 | ||
|
|
79566e47de | ||
|
|
6c5f4493dc | ||
|
|
4f3da7361a | ||
|
|
53404852e1 | ||
|
|
75743d2391 | ||
|
|
6a8b1e2628 | ||
|
|
932159b238 | ||
|
|
dc3dd8ca74 | ||
|
|
ae7b02d6ea | ||
|
|
135739da10 | ||
|
|
f1a47aa620 | ||
|
|
3d06a59303 | ||
|
|
395cc67cc0 | ||
|
|
ccbe4de116 | ||
|
|
b0fc0970aa | ||
|
|
ab342d698a | ||
|
|
5c25ab9d3d | ||
|
|
02a2ec72c0 | ||
|
|
720346e9d7 | ||
|
|
68e0652872 | ||
|
|
b81db4fc0f | ||
|
|
82b58f638c | ||
|
|
5b65b4817e | ||
|
|
c377995a1d | ||
|
|
e223fd99a3 | ||
|
|
5beadf9f35 | ||
|
|
5a929f6317 | ||
|
|
f66e9aa1e8 | ||
|
|
cf7e16fdcc | ||
|
|
89eec1edec | ||
|
|
3db235a532 | ||
|
|
24337f3a13 | ||
|
|
04988e43dd | ||
|
|
f94f3e82e8 | ||
|
|
cb5d306478 | ||
|
|
abaa41345a | ||
|
|
2071957b17 | ||
|
|
f61ee9d7dc | ||
|
|
b01b78f842 | ||
|
|
f46dacad9d | ||
|
|
0488b3402d | ||
|
|
fad6fe1c2a | ||
|
|
2789af0bd7 | ||
|
|
91da0dedb6 | ||
|
|
8d3c4987f0 |
+29
-9
@@ -9,10 +9,10 @@ services:
|
|||||||
mem_limit: 1700m
|
mem_limit: 1700m
|
||||||
environment:
|
environment:
|
||||||
JAVA_OPTS: "
|
JAVA_OPTS: "
|
||||||
-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.port=8983
|
-Dsolr.port=8983
|
||||||
@@ -42,8 +42,11 @@ services:
|
|||||||
-Djodconverter.enabled=false
|
-Djodconverter.enabled=false
|
||||||
"
|
"
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres-acs
|
- mysql-acs
|
||||||
- activemq
|
- activemq
|
||||||
|
volumes:
|
||||||
|
- 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:2.3.6
|
image: alfresco/alfresco-transform-core-aio:2.3.6
|
||||||
@@ -64,14 +67,16 @@ services:
|
|||||||
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||||
"
|
"
|
||||||
|
|
||||||
postgres-acs:
|
mysql-acs:
|
||||||
image: postgres:11.7
|
image: mysql:5.7
|
||||||
mem_limit: 512m
|
mem_limit: 512m
|
||||||
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:
|
||||||
|
- acsdb-volume:/var/lib/mysql:rw
|
||||||
|
|
||||||
search:
|
search:
|
||||||
image: alfresco/alfresco-search-services:2.0.1
|
image: alfresco/alfresco-search-services:2.0.1
|
||||||
@@ -83,10 +88,14 @@ services:
|
|||||||
- SOLR_SOLR_PORT=8983
|
- SOLR_SOLR_PORT=8983
|
||||||
- SOLR_CREATE_ALFRESCO_DEFAULTS=alfresco,archive
|
- SOLR_CREATE_ALFRESCO_DEFAULTS=alfresco,archive
|
||||||
- ALFRESCO_SECURE_COMMS=none
|
- ALFRESCO_SECURE_COMMS=none
|
||||||
|
volumes:
|
||||||
|
- solrindex-volume:/opt/alfresco-search-services/data:rw
|
||||||
|
|
||||||
activemq:
|
activemq:
|
||||||
image: alfresco/alfresco-activemq:5.15.8
|
image: alfresco/alfresco-activemq:5.15.8
|
||||||
mem_limit: 256m
|
mem_limit: 256m
|
||||||
|
volumes:
|
||||||
|
- activemq-volume:/opt/activemq/data:rw
|
||||||
|
|
||||||
proxy:
|
proxy:
|
||||||
build: ./nginx-ingress
|
build: ./nginx-ingress
|
||||||
@@ -96,3 +105,14 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- platform
|
- platform
|
||||||
- share
|
- share
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
acsbin-volume:
|
||||||
|
driver: local
|
||||||
|
acsdb-volume:
|
||||||
|
driver: local
|
||||||
|
activemq-volume:
|
||||||
|
driver: local
|
||||||
|
solrindex-volume:
|
||||||
|
driver: local
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user