Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
2b14374993 | |||
a4cfbd0b14 | |||
fbbed5946f | |||
f569d712e1 | |||
ffac352049 | |||
4dccd7892f | |||
d3b41dcc46 | |||
ce9b143fb5 |
@ -1,3 +1,38 @@
|
|||||||
# Originally sourced from https://github.com/Alfresco/acs-deployment/blob/4.0.3/docker-compose/docker-compose.yml
|
# Originally sourced from https://github.com/Alfresco/acs-deployment/blob/4.0.3/docker-compose/docker-compose.yml
|
||||||
#
|
#
|
||||||
version: "3"
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
transform-router:
|
||||||
|
image: quay.io/alfresco/alfresco-transform-router:${ATR_TAG}
|
||||||
|
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:${ATE_AIO_TAG}
|
||||||
|
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: quay.io/alfresco/alfresco-shared-file-store:${ASFS_TAG}
|
||||||
|
volumes:
|
||||||
|
- shared-file-store-volume:/tmp/Alfresco/sfs
|
||||||
|
|
||||||
|
activemq:
|
||||||
|
image: alfresco/alfresco-activemq:${AAMQ_TAG}
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
shared-file-store-volume:
|
||||||
|
driver_opts:
|
||||||
|
type: tmpfs
|
||||||
|
device: tmpfs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user