Compare commits
29 Commits
acs-mysql-
...
propagate/
Author | SHA1 | Date | |
---|---|---|---|
|
2c82f844b1 | ||
|
b805fbbd1a | ||
|
a72d43a6af | ||
|
b7c883068a | ||
6a8b1e2628 | |||
932159b238 | |||
962817ba63 | |||
135739da10 | |||
720346e9d7 | |||
68e0652872 | |||
2715b3afea | |||
b81db4fc0f | |||
c377995a1d | |||
e223fd99a3 | |||
9f75b4439d | |||
5beadf9f35 | |||
f94f3e82e8 | |||
cb5d306478 | |||
abaa41345a | |||
0ed77985f0 | |||
fad6fe1c2a | |||
2789af0bd7 | |||
91da0dedb6 | |||
8d3c4987f0 | |||
fbf7ca3678 | |||
63d1ee7ef9 | |||
a081d5b5c8 | |||
7cedfa4fa2 | |||
dcb88c42ea |
@@ -9,7 +9,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
JAVA_OPTS: "
|
JAVA_OPTS: "
|
||||||
-Ddb.driver=org.postgresql.Driver
|
-Ddb.driver=org.postgresql.Driver
|
||||||
-Ddb.url=jdbc:postgresql://postgres-acs:5432/alfresco
|
-Dsolr.host=search
|
||||||
-Dalfresco.host=${PROXY_HOST}
|
-Dalfresco.host=${PROXY_HOST}
|
||||||
-Dalfresco.port=${PROXY_PORT}
|
-Dalfresco.port=${PROXY_PORT}
|
||||||
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||||
@@ -18,12 +18,26 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- postgres-acs
|
- postgres-acs
|
||||||
- activemq
|
- activemq
|
||||||
|
volumes:
|
||||||
|
- acsbin-volume:/usr/local/tomcat/alf_data:rw
|
||||||
|
|
||||||
postgres-acs:
|
postgres-acs:
|
||||||
image: postgres:latest
|
image: postgres:latest
|
||||||
|
volumes:
|
||||||
|
- acsdb-volume:/var/lib/postgresql/data:rw
|
||||||
|
|
||||||
|
search:
|
||||||
|
image: alfresco/alfresco-search-services:latest
|
||||||
|
environment:
|
||||||
|
- SOLR_ALFRESCO_HOST=platform
|
||||||
|
- SOLR_SOLR_HOST=search
|
||||||
|
volumes:
|
||||||
|
- solrindex-volume:/opt/alfresco-search-services/data:rw
|
||||||
|
|
||||||
activemq:
|
activemq:
|
||||||
image: alfresco/alfresco-activemq:latest
|
image: alfresco/alfresco-activemq:latest
|
||||||
|
volumes:
|
||||||
|
- activemq-volume:/opt/activemq/data:rw
|
||||||
|
|
||||||
proxy:
|
proxy:
|
||||||
build: ./nginx-ingress
|
build: ./nginx-ingress
|
||||||
@@ -32,3 +46,13 @@ services:
|
|||||||
- 8080:8080
|
- 8080:8080
|
||||||
depends_on:
|
depends_on:
|
||||||
- platform
|
- 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