-
Notifications
You must be signed in to change notification settings - Fork 18
/
docker-compose.yml
70 lines (64 loc) · 1.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
version: "3"
networks:
zeebe_network:
driver: bridge
services:
zeebe:
container_name: zeebe_broker
image: ghcr.io/camunda-community-hub/zeebe-with-hazelcast-exporter:8.0.5
environment:
- ZEEBE_LOG_LEVEL=debug
ports:
- "26500:26500"
- "9600:9600"
- "5701:5701"
networks:
- zeebe_network
zeebe-simple-tasklist-in-memory:
container_name: zeebe-simple-tasklist-in-memory
image: ghcr.io/camunda-community-hub/zeebe-simple-tasklist:1.0.1
environment:
- zeebe.client.broker.gateway-address=zeebe:26500
- zeebe.client.worker.hazelcast.connection=zeebe:5701
ports:
- "8081:8081"
depends_on:
- zeebe
networks:
- zeebe_network
profiles:
- in-memory
zeebe-simple-tasklist-postgres:
container_name: zeebe-simple-tasklist-postgres
image: ghcr.io/camunda-community-hub/zeebe-simple-tasklist:1.0.1
environment:
- zeebe.client.broker.gateway-address=zeebe:26500
- zeebe.client.worker.hazelcast.connection=zeebe:5701
- spring.datasource.url=jdbc:postgresql://postgres-zeebe-simple-tasklist:5432/postgres
- spring.datasource.username=postgres
- spring.datasource.password=zeebe
- spring.datasource.driverClassName=org.postgresql.Driver
- spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
ports:
- "8081:8081"
depends_on:
- zeebe
- postgres-zeebe-simple-tasklist
networks:
- zeebe_network
profiles:
- postgres
postgres-zeebe-simple-tasklist:
image: postgres:12.2
restart: always
environment:
POSTGRES_PASSWORD: zeebe
volumes:
- postgres-zeebe-simple-tasklist-data:/var/lib/postgresql/data
networks:
- zeebe_network
profiles:
- postgres
volumes:
postgres-zeebe-simple-tasklist-data:
driver: local