Compare commits
39 Commits
acs-mysql
...
acs-search
Author | SHA1 | Date | |
---|---|---|---|
b3c89aa9ce | |||
bae1c47984 | |||
59c87eb302 | |||
8c875fe850 | |||
81ca2ed038 | |||
51b777c0c5 | |||
d556040909 | |||
64f85da579 | |||
9899d03da9 | |||
5b4069427e | |||
979924957c | |||
2a4b61053d | |||
|
99d39fa7f7 | ||
|
1778fd04a4 | ||
|
a72d43a6af | ||
2878298644 | |||
11bb8c62ed | |||
962817ba63 | |||
83db2b08dc | |||
fc9c26eac5 | |||
2715b3afea | |||
253b7fd3f2 | |||
9f75b4439d | |||
520e211c11 | |||
1635445cba | |||
0ed77985f0 | |||
1d0aa0c91e | |||
7a005d16d7 | |||
b762ba0ce1 | |||
a7cacf8edc | |||
43d5686407 | |||
fbf7ca3678 | |||
69974eaeea | |||
82d6fd5c8a | |||
63d1ee7ef9 | |||
a081d5b5c8 | |||
8a5004ed74 | |||
7cedfa4fa2 | |||
dcb88c42ea |
1
.env
1
.env
@@ -8,3 +8,4 @@ PROXY_PORT=8080
|
||||
ACS_TAG=7.4.1.1
|
||||
AAMQ_TAG=latest
|
||||
POSTGRES_TAG=13
|
||||
ASIE_TAG=2.0.8.2
|
||||
|
@@ -19,11 +19,14 @@ services:
|
||||
"
|
||||
JAVA_OPTS: "
|
||||
-Xms512m -Xmx1g
|
||||
-Ddb.driver=com.mysql.jdbc.Driver
|
||||
-Ddb.driver=org.postgresql.Driver
|
||||
-Ddb.username=alfresco
|
||||
-Ddb.password=alfresco
|
||||
-Ddb.url=jdbc:mysql://mysql-acs:3306/alfresco?useUnicode=yes\\&characterEncoding=UTF-8\\&useSSL=false
|
||||
-Dindex.subsystem.name=noindex
|
||||
-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}
|
||||
@@ -40,16 +43,29 @@ services:
|
||||
-Djodconverter.enabled=false
|
||||
"
|
||||
depends_on:
|
||||
- mysql-acs
|
||||
- postgres-acs
|
||||
- activemq
|
||||
|
||||
mysql-acs:
|
||||
image: mysql:5.7
|
||||
postgres-acs:
|
||||
image: postgres:${POSTGRES_TAG}
|
||||
environment:
|
||||
- MYSQL_RANDOM_ROOT_PASSWORD=true
|
||||
- MYSQL_PASSWORD=alfresco
|
||||
- MYSQL_USER=alfresco
|
||||
- MYSQL_DATABASE=alfresco
|
||||
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}
|
||||
|
Reference in New Issue
Block a user