Compare commits
25 Commits
aps-search
...
aps-search
Author | SHA1 | Date | |
---|---|---|---|
5ff54e221c | |||
de1b8a0bcc | |||
afa845b893 | |||
32255b7f48 | |||
607590c1dd | |||
bf4879e466 | |||
3a6d3b1c1e | |||
944397b02c | |||
17738d0a96 | |||
64708232c4 | |||
3c1796b0b4 | |||
604ed69bb3 | |||
2ed89fa708 | |||
bcdd5e0525 | |||
|
5faa546a0f | ||
|
4f191bcbea | ||
|
ba6a0f70ad | ||
|
7d0eadd920 | ||
912249c388 | |||
|
83c123de08 | ||
6edb220093 | |||
8ccf85d170 | |||
70eb1fd7fb | |||
d7ed2df85e | |||
7caee29b23 |
@@ -22,6 +22,7 @@ services:
|
|||||||
- search-aps
|
- search-aps
|
||||||
volumes:
|
volumes:
|
||||||
- "$ALFRESCO_LICENSE_DIR/aps:/home/alfresco/.activiti/enterprise-license:ro"
|
- "$ALFRESCO_LICENSE_DIR/aps:/home/alfresco/.activiti/enterprise-license:ro"
|
||||||
|
- apsbin-volume:/var/lib/postgresql/data:rw
|
||||||
|
|
||||||
activiti-admin:
|
activiti-admin:
|
||||||
image: quay.io/alfresco/alfresco-process-services-admin:${APS_TAG}
|
image: quay.io/alfresco/alfresco-process-services-admin:${APS_TAG}
|
||||||
@@ -45,6 +46,8 @@ services:
|
|||||||
POSTGRES_USER: alfresco
|
POSTGRES_USER: alfresco
|
||||||
POSTGRES_PASSWORD: alfresco
|
POSTGRES_PASSWORD: alfresco
|
||||||
command: postgres -c max_connections=300 -c log_min_messages=LOG
|
command: postgres -c max_connections=300 -c log_min_messages=LOG
|
||||||
|
volumes:
|
||||||
|
- apsdb-volume:/var/lib/postgresql/data:rw
|
||||||
|
|
||||||
postgres-aps-admin:
|
postgres-aps-admin:
|
||||||
image: postgres:${POSTGRES_TAG}
|
image: postgres:${POSTGRES_TAG}
|
||||||
@@ -53,6 +56,8 @@ services:
|
|||||||
POSTGRES_USER: alfresco
|
POSTGRES_USER: alfresco
|
||||||
POSTGRES_PASSWORD: alfresco
|
POSTGRES_PASSWORD: alfresco
|
||||||
command: postgres -c max_connections=50 -c log_min_messages=LOG
|
command: postgres -c max_connections=50 -c log_min_messages=LOG
|
||||||
|
volumes:
|
||||||
|
- apsadmindb-volume:/var/lib/postgresql/data:rw
|
||||||
|
|
||||||
search-aps:
|
search-aps:
|
||||||
image: elasticsearch:${ELASTICSEARCH_TAG}
|
image: elasticsearch:${ELASTICSEARCH_TAG}
|
||||||
@@ -62,6 +67,8 @@ services:
|
|||||||
memlock:
|
memlock:
|
||||||
soft: -1
|
soft: -1
|
||||||
hard: -1
|
hard: -1
|
||||||
|
volumes:
|
||||||
|
- esindex-volume:/var/lib/postgresql/data:rw
|
||||||
|
|
||||||
proxy:
|
proxy:
|
||||||
build: ./nginx-ingress
|
build: ./nginx-ingress
|
||||||
@@ -71,3 +78,13 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- activiti-app
|
- activiti-app
|
||||||
- activiti-admin
|
- activiti-admin
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
apsbin-volume:
|
||||||
|
driver: local
|
||||||
|
apsdb-volume:
|
||||||
|
driver: local
|
||||||
|
apsadmindb-volume:
|
||||||
|
driver: local
|
||||||
|
esindex-volume:
|
||||||
|
driver: local
|
||||||
|
Reference in New Issue
Block a user