-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.dev.yml
94 lines (87 loc) · 2.22 KB
/
docker-compose.dev.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# docker-compose for dev
version: '3.8'
services:
frontend:
build:
context: ./frontend
dockerfile: Dockerfile.dev
args:
PUBLIC_URL: ${PUBLIC_URL}
WS_PUBLIC_URL: ${WS_PUBLIC_URL}
FRONTEND_PORT: ${FRONTEND_PORT}
QUESTION_API_PORT: ${QUESTION_API_PORT}
USER_API_PORT: ${USER_API_PORT}
MATCHING_API_PORT: ${MATCHING_API_PORT}
COLLAB_API_PORT: ${COLLAB_API_PORT}
ports:
- "${FRONTEND_PORT}:${FRONTEND_PORT}"
develop:
watch:
- action: sync
path: ./frontend
target: /app
question:
build:
context: ./backend/question-service
dockerfile: Dockerfile.dev
ports:
- "${QUESTION_API_PORT}:2000"
develop:
watch:
- action: sync
path: ./backend/question-service
target: /app
user:
build:
context: ./backend/user-service
dockerfile: Dockerfile.prod
env_file:
- ./backend/user-service/.env
ports:
- "${USER_API_PORT}:3001"
zookeeper:
image: confluentinc/cp-zookeeper:7.7.1
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ports:
- "2181:2181"
healthcheck:
test: [ "CMD", "echo", "ruok", "|", "nc", "localhost", "2181", "|", "grep", "imok" ]
interval: 10s
timeout: 5s
retries: 5
kafka:
image: confluentinc/cp-kafka:7.7.1
ports:
- "9092:9092"
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
depends_on:
zookeeper:
condition: service_healthy
healthcheck:
test: [ "CMD", "nc", "-z", "localhost", "9092" ]
interval: 10s
timeout: 5s
retries: 10
matching-service:
build:
context: ./backend/matching-service
dockerfile: Dockerfile.match
environment:
KAFKA_BROKER: kafka:9092
ports:
- "${MATCHING_API_PORT}:3002"
depends_on:
kafka:
condition: service_healthy
collab-service:
build:
context: ./backend/collab-service
dockerfile: Dockerfile.dev
ports:
- "${COLLAB_API_PORT}:3003"