-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
53 lines (48 loc) · 1.14 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
version: '3.8'
services:
zookeeper:
image: bitnami/zookeeper:latest
ports:
- "2181:2181"
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
kafka:
image: bitnami/kafka:latest
ports:
- "9092:9092"
environment:
- KAFKA_BROKER_ID=1
- KAFKA_CFG_LISTENERS=PLAINTEXT://:9092
- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://localhost:9092
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- KAFKA_CFG_AUTO_CREATE_TOPICS_ENABLE=true
- ALLOW_PLAINTEXT_LISTENER=yes
depends_on:
- zookeeper
volumes:
- ./kafka-config/create-topics.sh:/opt/bitnami/scripts/post-init.d/create-topics.sh
backend:
build:
context: ./transcription_translate
dockerfile: Dockerfile
container_name: backend
ports:
- "8000:8000"
depends_on:
- kafka
consumer:
build:
context: ./consumer
dockerfile: Dockerfile
container_name: consumer
depends_on:
- kafka
frontend:
build:
context: ./video-transcription-app
dockerfile: Dockerfile
container_name: frontend
ports:
- "3000:3000"
depends_on:
- backend