Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39928d09fc | ||
|
|
9859e68fe8 | ||
|
|
4dccd7892f | ||
|
|
b024fd8d7e | ||
|
|
8a36f91d06 | ||
|
|
d3b41dcc46 | ||
|
|
b47583a716 | ||
|
|
04f44ef280 | ||
|
|
ce9b143fb5 | ||
|
|
f73fdbb5ea | ||
|
|
3b631bcd87 | ||
|
|
d6f1c99c79 | ||
|
|
6d35ffa551 | ||
|
|
6c739c5795 | ||
|
|
487a677f6f | ||
|
|
0608045c1b | ||
|
|
79ef1f5868 | ||
|
|
8c480402ed | ||
|
|
6858d201c2 | ||
|
|
c1323a8171 |
+36
-5
@@ -8,19 +8,44 @@ services:
|
||||
image: alfresco/alfresco-content-repository:latest
|
||||
environment:
|
||||
JAVA_OPTS: "
|
||||
-Ddb.driver=com.mysql.jdbc.Driver
|
||||
-Ddb.url=jdbc:mysql://mysql-acs:3306/alfresco?useUnicode=yes\\&characterEncoding=UTF-8\\&useSSL=false
|
||||
-Ddb.driver=org.postgresql.Driver
|
||||
-Ddb.url=jdbc:postgresql://postgres-acs:5432/alfresco
|
||||
-Dalfresco.host=${PROXY_HOST}
|
||||
-Dalfresco.port=${PROXY_PORT}
|
||||
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||
-Dmessaging.broker.url=\"failover:(nio://activemq:61616)?timeout=3000&jms.useCompression=true\"
|
||||
"
|
||||
depends_on:
|
||||
- mysql-acs
|
||||
- postgres-acs
|
||||
- activemq
|
||||
- shared-file-store
|
||||
|
||||
mysql-acs:
|
||||
image: mysql:latest
|
||||
transform-router:
|
||||
image: quay.io/alfresco/alfresco-transform-router:latest
|
||||
environment:
|
||||
ACTIVEMQ_URL: "nio://activemq:61616"
|
||||
CORE_AIO_URL : "http://transform-core-aio:8090"
|
||||
FILE_STORE_URL: "http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file"
|
||||
depends_on:
|
||||
- activemq
|
||||
- shared-file-store
|
||||
|
||||
transform-core-aio:
|
||||
image: alfresco/alfresco-transform-core-aio:latest
|
||||
environment:
|
||||
ACTIVEMQ_URL: "nio://activemq:61616"
|
||||
FILE_STORE_URL: "http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file"
|
||||
depends_on:
|
||||
- activemq
|
||||
- shared-file-store
|
||||
|
||||
shared-file-store:
|
||||
image: alfresco/alfresco-shared-file-store:latest
|
||||
volumes:
|
||||
- shared-file-store-volume:/tmp/Alfresco/sfs
|
||||
|
||||
postgres-acs:
|
||||
image: postgres:latest
|
||||
|
||||
activemq:
|
||||
image: alfresco/alfresco-activemq:latest
|
||||
@@ -32,3 +57,9 @@ services:
|
||||
- 8080:8080
|
||||
depends_on:
|
||||
- platform
|
||||
|
||||
volumes:
|
||||
shared-file-store-volume:
|
||||
driver_opts:
|
||||
type: tmpfs
|
||||
device: tmpfs
|
||||
|
||||
Reference in New Issue
Block a user