forked from obiskicancode/Distributed-Notification-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
43 lines (38 loc) · 1.17 KB
/
Copy pathdocker-compose.dev.yml
File metadata and controls
43 lines (38 loc) · 1.17 KB
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
services:
gateway-service:
build:
context: ./
dockerfile: ./services/gateway-service/Dockerfile.dev
volumes:
- ./services/gateway-service:/app/services/gateway-service
- /app/services/gateway-service/node_modules
push-service:
build:
context: ./
dockerfile: ./services/push-service/Dockerfile.dev
ports:
- "3003:3003"
volumes:
- ./services/push-service:/app/services/push-service
- /app/services/push-service/node_modules
email-service:
build:
context: ./
dockerfile: ./services/email-service/Dockerfile.dev
volumes:
- ./services/email-service:/app/services/email-service
- /app/services/email-service/node_modules
template-service:
build:
context: ./
dockerfile: ./services/template-service/Dockerfile.dev
volumes:
- ./services/template-service:/app/services/template-service
- /app/services/template-service/node_modules
user-service:
build:
context: ./
dockerfile: ./services/user-service/Dockerfile.dev
volumes:
- ./services/user-service:/app/services/user-service
- /app/services/user-service/node_modules