removed elasticsearch

This commit is contained in:
Brian Long 2023-10-25 18:32:39 -04:00
parent 7e526e0e1e
commit fc8a854920
2 changed files with 1 additions and 13 deletions

1
.env
View File

@ -7,4 +7,3 @@ PROXY_PORT=8080
APS_TAG=2.3.5 APS_TAG=2.3.5
POSTGRES_TAG=13 POSTGRES_TAG=13
ELASTICSEARCH_TAG=7.17.7

View File

@ -3,11 +3,11 @@
version: "3" version: "3"
services: services:
activiti-app: activiti-app:
image: quay.io/alfresco/alfresco-process-services:${APS_TAG} image: quay.io/alfresco/alfresco-process-services:${APS_TAG}
environment: environment:
ACTIVITI_DATASOURCE_URL: 'jdbc:postgresql://postgres-aps:5432/activiti?characterEncoding=UTF-8' ACTIVITI_DATASOURCE_URL: 'jdbc:postgresql://postgres-aps:5432/activiti?characterEncoding=UTF-8'
ACTIVITI_ES_REST_CLIENT_ADDRESS: search-aps
depends_on: depends_on:
- postgres-aps - postgres-aps
volumes: volumes:
@ -31,17 +31,6 @@ services:
image: postgres:${POSTGRES_TAG} image: postgres:${POSTGRES_TAG}
environment: environment:
POSTGRES_DB: activiti-admin POSTGRES_DB: activiti-admin
search-aps:
image: elasticsearch:${ELASTICSEARCH_TAG}
environment:
discovery.type: single-node
ulimits:
memlock:
soft: -1
hard: -1
depends_on:
- activiti-app
proxy: proxy:
build: ./nginx-ingress build: ./nginx-ingress