-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.c7-client.yml
51 lines (48 loc) · 1.31 KB
/
docker-compose.c7-client.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
########################################
# Camunda Platform full development setup
########################################
version: '3.8'
volumes:
certs:
networks:
# Note there are two bridge networks. One for Zeebe and one for IAM. Operate, Tasklist, and Optimize use both
camunda-platform: { }
services:
########################################
# Camunda Platform Service
########################################
c7-client:
container_name: c7-client
image: ghcr.io/camunda-consulting/camunda-demo-c7-client:latest
#
# build:
# context: ../camunda-demo-c7-client
ports:
- "9012:8080"
volumes:
- ./certs:/opt/certs
environment:
PROFILES: client,cors,prod,email,user-data
PORT: 8080
MAIL_HOST: smtp
MAIL_PORT: 2500
DATA_API_URI: http://data-api:9000/api
CAMUNDA_API: http://camunda-7:8080/engine-rest/message
CAMUNDA_REST_BASE: http://camunda-7:8080/engine-rest
deploy:
resources:
limits:
cpus: '2'
memory: 1000M
reservations:
memory: 1000M
healthcheck:
test: ["CMD", "curl", "-f", "http://camunda-7:8080/engine-rest/engine"]
interval: 30s
timeout: 10s
retries: 5
restart: always
networks:
- camunda-platform
depends_on:
- camunda-7