-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.c8.yml
51 lines (48 loc) · 1.29 KB
/
docker-compose.c8.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
########################################
c8-client:
container_name: c8-client
image: ghcr.io/camunda-consulting/camunda-8-poc-template:latest
#use to build from local process-solution-template
# build:
# context: ../camunda-8-process-solution-template
ports:
- "9012:8080"
environment:
PROFILES: cors,docker,email,user-data
PORT: 8080
MAX_POOL_SIZE: 3
MAIL_HOST: smtp
MAIL_PORT: 2500
DATA_API_URI: http://data-api:9000/api
deploy:
resources:
limits:
cpus: '2'
memory: 1000M
reservations:
memory: 1000M
healthcheck:
test: ["CMD", "curl", "-f", "http://camunda-platform:8080/engine-rest/engine"]
interval: 30s
timeout: 10s
retries: 5
restart: always
networks:
- camunda-platform
# depends_on:
# - zeebe
# - data-api
# - reactjs
# - smtp