-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
47 lines (45 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
services:
producer:
build:
context: .
dockerfile: ./Dockerfile
env_file:
- .env
volumes:
- ./:/var/www/html
- caddy_data:/data
- caddy_config:/config
command: /entrypoint.sh
tty: true
depends_on:
- kafka
consumer:
build:
context: .
dockerfile: ./Dockerfile
env_file:
- .env
volumes:
- ./:/var/www/html
- caddy_data:/data
- caddy_config:/config
command: /entrypoint.sh
ports:
- 443:443
tty: true
depends_on:
- kafka
kafka:
image: 'bitnami/kafka:latest'
environment:
- KAFKA_CFG_NODE_ID=0
- KAFKA_CFG_PROCESS_ROLES=controller,broker
- KAFKA_CFG_LISTENERS=PLAINTEXT://:9092,CONTROLLER://:9093
- KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP=CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT
- KAFKA_CFG_CONTROLLER_QUORUM_VOTERS=0@kafka:9093
- KAFKA_CFG_CONTROLLER_LISTENER_NAMES=CONTROLLER
volumes:
- ./data:/bitnami/kafka
volumes:
caddy_data:
caddy_config: