Compare commits
38
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6178fe93b0 | ||
|
|
9f059b6c13 | ||
|
|
2d292ade40 | ||
|
|
9af50009c1 | ||
|
|
f7c664e7f4 | ||
|
|
a24bf1b647 | ||
|
|
6d56f610a7 | ||
|
|
4748d0e7b6 | ||
|
|
299d2fe04d | ||
|
|
8a7d6d2016 | ||
|
|
e62b0838f2 | ||
|
|
38def362f6 | ||
|
|
f3d3293e9e | ||
|
|
2c82f844b1 | ||
|
|
b805fbbd1a | ||
|
|
b7c883068a | ||
|
|
53404852e1 | ||
|
|
75743d2391 | ||
|
|
6a8b1e2628 | ||
|
|
932159b238 | ||
|
|
135739da10 | ||
|
|
02a2ec72c0 | ||
|
|
720346e9d7 | ||
|
|
68e0652872 | ||
|
|
b81db4fc0f | ||
|
|
c377995a1d | ||
|
|
e223fd99a3 | ||
|
|
5beadf9f35 | ||
|
|
24337f3a13 | ||
|
|
04988e43dd | ||
|
|
f94f3e82e8 | ||
|
|
cb5d306478 | ||
|
|
abaa41345a | ||
|
|
0488b3402d | ||
|
|
fad6fe1c2a | ||
|
|
2789af0bd7 | ||
|
|
91da0dedb6 | ||
|
|
8d3c4987f0 |
+19
-1
@@ -5,7 +5,7 @@ version: "3"
|
||||
services:
|
||||
|
||||
platform:
|
||||
image: alfresco/alfresco-governance-repository-community:${ACS_TAG}
|
||||
image: alfresco/alfresco-content-repository-community:${ACS_TAG}
|
||||
environment:
|
||||
JAVA_TOOL_OPTIONS: "
|
||||
-Dencryption.keystore.type=JCEKS
|
||||
@@ -51,6 +51,8 @@ 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}
|
||||
@@ -62,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}
|
||||
@@ -75,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}
|
||||
@@ -82,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
|
||||
@@ -90,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