forked from camunda-community-hub/zeebe-docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
47 lines (44 loc) · 1.02 KB
/
docker-compose.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
version: "2"
networks:
zeebe_network:
volumes:
zeebe_data:
zeebe_elasticsearch_data:
services:
zeebe:
image: camunda/zeebe:0.26.0
environment:
- ZEEBE_LOG_LEVEL=debug
ports:
- "26500:26500"
- "9600:9600"
volumes:
- zeebe_data:/usr/local/zeebe/data
- ./application.yaml:/usr/local/zeebe/config/application.yaml
depends_on:
- elasticsearch
networks:
- zeebe_network
operate:
image: camunda/operate:0.26.0
ports:
- "8080:8080"
depends_on:
- zeebe
- elasticsearch
volumes:
- ../lib/application.yml:/usr/local/operate/config/application.yml
networks:
- zeebe_network
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.7.1
ports:
- "9200:9200"
environment:
- discovery.type=single-node
- cluster.name=elasticsearch
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
volumes:
- zeebe_elasticsearch_data:/usr/share/elasticsearch/data
networks:
- zeebe_network