-
Notifications
You must be signed in to change notification settings - Fork 5
/
compose.dev.yml
77 lines (65 loc) · 1.19 KB
/
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
services:
frontend:
volumes:
- /app/node_modules
- ./frontend:/app
question:
command: npm run dev
ports:
- 8081:8081
volumes:
- /app/node_modules
- ./services/question:/app
question-db:
ports:
- 27017:27017
user:
command: npm run dev
ports:
- 8082:8082
volumes:
- /app/node_modules
- ./services/user:/app
user-db:
ports:
- 27018:27017
match:
command: npm run dev
ports:
- 8083:8083
volumes:
- /app/node_modules
- ./services/match:/app
match-db:
ports:
- 27019:27017
collaboration:
command: npm run dev
ports:
- 8084:8084
volumes:
- /app/node_modules
- ./services/collaboration:/app
collaboration-db:
ports:
- 27020:27017
history:
command: npm run dev
ports:
- 8085:8085
volumes:
- /app/node_modules
- ./services/history:/app
history-db:
ports:
- 27021:27017
broker:
ports:
- 5672:5672
dozzle:
image: amir20/dozzle:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 8000:8080
restart: always