-
Notifications
You must be signed in to change notification settings - Fork 15
/
docker-compose.yml
70 lines (64 loc) · 1.66 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.1.6
environment:
- ZEEBE_LOG_LEVEL=debug
ports:
- "26500:26500"
- "9600:9600"
- "5701:5701"
networks:
- zeebe_network
zeeqs-in-memory:
container_name: zeeqs-in-memory
image: ghcr.io/camunda-community-hub/zeeqs:latest
environment:
- zeebe.client.broker.gateway-address=zeebe:26500
- zeebe.client.worker.hazelcast.connection=zeebe:5701
ports:
- "9000:9000"
depends_on:
- zeebe
networks:
- zeebe_network
profiles:
- in-memory
zeeqs-postgres:
container_name: zeeqs-postgres
image: ghcr.io/camunda-community-hub/zeeqs:latest
environment:
- zeebe.client.worker.hazelcast.connection=zeebe:5701
- spring.datasource.url=jdbc:postgresql://postgres-zeeqs: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
- spring.jpa.hibernate.ddl-auto=update
ports:
- "9000:9000"
depends_on:
- zeebe
- postgres-zeeqs
networks:
- zeebe_network
profiles:
- postgres
postgres-zeeqs:
image: postgres:12.2
restart: always
environment:
POSTGRES_PASSWORD: zeebe
volumes:
- database-data:/var/lib/postgresql/data/
networks:
- zeebe_network
profiles:
- postgres
volumes:
database-data:
driver: local