-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
55 lines (53 loc) · 1.51 KB
/
docker-compose.yaml
File metadata and controls
55 lines (53 loc) · 1.51 KB
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
52
53
54
55
version: "2"
networks:
zeebe_network:
driver: bridge
services:
zeebe:
container_name: zeebe_broker
image: camunda/zeebe:0.26.2
environment:
- ZEEBE_LOG_LEVEL=info
ports:
- "26500:26500"
- "9600:9600"
- "5701:5701"
volumes:
- ./zeebe-hazelcast-exporter-0.10.0.jar:/usr/local/zeebe/exporters/zeebe-hazelcast-exporter-0.10.0.jar
- ./application.yaml:/usr/local/zeebe/config/application.yaml
networks:
- zeebe_network
monitor:
container_name: zeebe_monitor
image: camunda/zeebe-simple-monitor:1.0.0
environment:
- zeebe.client.broker.contactPoint=zeebe:26500
- zeebe.client.worker.hazelcast.connection=zeebe:5701
volumes:
- ./simple-monitor-application.yaml:/application.yaml
ports:
- "8082:8082"
depends_on:
- zeebe
networks:
- zeebe_network
zeebe-runner:
build:
context: .
dockerfile: Dockerfile
image: nima/zeebe-runner
container_name: zeebe-runner
ports:
- "5555:5555"
working_dir: /opt/working
volumes:
- .:/opt/working
entrypoint: python api.py
environment:
- API_PORT=5555
- PYTHONDONTWRITEBYTECODE=1
- PYTHONIOENCODING=utf8
depends_on:
- zeebe
networks:
- zeebe_network