-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
56 lines (51 loc) · 1.23 KB
/
docker-compose.yaml
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
version: '2.4'
services:
pulsar:
image: apachepulsar/pulsar:3.2.1
restart: always
entrypoint: /bin/bash -c "bin/pulsar standalone"
volumes:
- pulsar-data:/pulsar/data
ports:
- "6650:6650"
- "8080:8080"
healthcheck:
test: ['CMD', 'bin/pulsar-admin', 'brokers', 'healthcheck']
interval: 5s
timeout: 10s
retries: 10
networks:
- pulsar-net
# UI for Apache Pulsar: https://dekaf.io
# https://twitter.com/dekaf_io
dekaf:
image: tealtools/dekaf:latest
restart: always
environment:
DEKAF_PULSAR_WEB_URL: "http://pulsar:8080"
DEKAF_PULSAR_BROKER_URL: "pulsar://pulsar:6650"
# DEKAF_LICENSE_ID: ""
# DEKAF_LICENSE_TOKEN: ""
volumes:
- dekaf-library:/dekaf/data/library
ports:
- "8090:8090"
networks:
- pulsar-net
dekaf-demoapp:
image: tealtools/dekaf-demoapp:latest
restart: always
depends_on:
pulsar:
condition: service_healthy
environment:
DEKAF_DEMOAPP_PULSAR_WEB_URL: "http://pulsar:8080"
DEKAF_DEMOAPP_PULSAR_BROKER_URL: "pulsar://pulsar:6650"
networks:
- pulsar-net
volumes:
pulsar-data:
dekaf-library:
networks:
pulsar-net:
driver: bridge