-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
70 lines (62 loc) · 1.25 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
services:
redis:
image: redis:latest
restart: always
command: redis-server --loglevel warning
ports:
- '6379:6379'
user-service:
restart: always
build:
context: ./user-service
dockerfile: Dockerfile
ports:
- '8001:8001'
matching-serivce:
restart: always
build:
context: ./matching-service
dockerfile: Dockerfile
ports:
- '8002:8002'
question-service:
restart: always
build:
context: ./question-service
dockerfile: Dockerfile
ports:
- '8003:8003'
collaboration-service:
restart: always
build:
context: ./collaboration-service
dockerfile: Dockerfile
ports:
- '8004:8004'
communication-service:
restart: always
build:
context: ./communication-service
dockerfile: Dockerfile
ports:
- '8005:8005'
history-service:
restart: always
build:
context: ./history-service
dockerfile: Dockerfile
ports:
- '8006:8006'
run-service:
restart: always
build:
context: ./run-service
dockerfile: Dockerfile
ports:
- '8007:8007'
gen-ai-service:
build:
context: ./gen-ai-service
dockerfile: Dockerfile
ports:
- '8008:8008'