Compare commits
| 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 |
+25
-1
@@ -9,7 +9,7 @@ services:
|
||||
environment:
|
||||
JAVA_OPTS: "
|
||||
-Ddb.driver=org.postgresql.Driver
|
||||
-Ddb.url=jdbc:postgresql://postgres-acs:5432/alfresco
|
||||
-Dsolr.host=search
|
||||
-Dalfresco.host=${PROXY_HOST}
|
||||
-Dalfresco.port=${PROXY_PORT}
|
||||
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||
@@ -18,12 +18,26 @@ services:
|
||||
depends_on:
|
||||
- postgres-acs
|
||||
- activemq
|
||||
volumes:
|
||||
- acsbin-volume:/usr/local/tomcat/alf_data:rw
|
||||
|
||||
postgres-acs:
|
||||
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:
|
||||
image: alfresco/alfresco-activemq:latest
|
||||
volumes:
|
||||
- activemq-volume:/opt/activemq/data:rw
|
||||
|
||||
proxy:
|
||||
build: ./nginx-ingress
|
||||
@@ -32,3 +46,13 @@ services:
|
||||
- 8080:8080
|
||||
depends_on:
|
||||
- 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