Compare commits
45
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b3c89aa9ce | ||
|
|
fbda2bcdde | ||
|
|
bae1c47984 | ||
|
|
df452d73a0 | ||
|
|
59c87eb302 | ||
|
|
8c875fe850 | ||
|
|
ef221d9c7a | ||
|
|
d556040909 | ||
|
|
64f85da579 | ||
|
|
7511eba729 | ||
|
|
173de2375e | ||
|
|
481e1bb38d | ||
|
|
979924957c | ||
|
|
2a4b61053d | ||
|
|
b8016f4ac7 | ||
|
|
99d39fa7f7 | ||
|
|
1778fd04a4 | ||
|
|
d616b9ef3a | ||
|
|
2878298644 | ||
|
|
11bb8c62ed | ||
|
|
d70efc6943 | ||
|
|
83db2b08dc | ||
|
|
a3cb815dd1 | ||
|
|
fc9c26eac5 | ||
|
|
55b70f1a36 | ||
|
|
253b7fd3f2 | ||
|
|
3ac57ce7d1 | ||
|
|
520e211c11 | ||
|
|
1635445cba | ||
|
|
6ec4a797ca | ||
|
|
1d0aa0c91e | ||
|
|
7a005d16d7 | ||
|
|
60b5a8989b | ||
|
|
b762ba0ce1 | ||
|
|
c22af67a06 | ||
|
|
a7cacf8edc | ||
|
|
43d5686407 | ||
|
|
e29e80b650 | ||
|
|
69974eaeea | ||
|
|
82d6fd5c8a | ||
|
|
90e935a49e | ||
|
|
6e32209824 | ||
|
|
8a5004ed74 | ||
|
|
d0a62bfd24 | ||
|
|
723f3ec954 |
+29
-1
@@ -15,16 +15,32 @@ 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=solr6
|
||||
-Dsolr.host=search
|
||||
-Dsolr.secureComms=secret
|
||||
-Dsolr.sharedSecret=alfresco-secret
|
||||
-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
|
||||
-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
|
||||
-Dsystem.content.eagerOrphanCleanup=true
|
||||
-Dsystem.content.orphanProtectDays=0
|
||||
-Djodconverter.enabled=false
|
||||
"
|
||||
depends_on:
|
||||
- postgres-acs
|
||||
@@ -32,19 +48,31 @@ services:
|
||||
|
||||
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
|
||||
|
||||
search:
|
||||
image: alfresco/alfresco-search-services:${ASIE_TAG}
|
||||
environment:
|
||||
SOLR_ALFRESCO_HOST: platform
|
||||
SOLR_SOLR_HOST: search
|
||||
SOLR_CREATE_ALFRESCO_DEFAULTS: alfresco,archive
|
||||
ALFRESCO_SECURE_COMMS: secret
|
||||
JAVA_TOOL_OPTIONS: "
|
||||
-Dalfresco.secureComms.secret=alfresco-secret
|
||||
"
|
||||
healthcheck:
|
||||
test: "curl -fsS http://localhost:8983/solr"
|
||||
|
||||
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