-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
51 lines (44 loc) · 1.1 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
version: "3"
services:
gateway-service:
build:
context: ./gateway-nodejs-service
volumes:
- ./gateway-nodejs-service:/usr/src/app
- /usr/src/app/node_modules
ports:
- 5000:8080
environment:
- PORT=8080
indeed-service:
build: ./indeed-service
volumes:
- ./indeed-service:/usr/src/app
ports:
- 5001:8080
environment:
- PORT=8080
linkedin-service:
build: ./linkedin-service
volumes:
- ./linkedin-service:/usr/src/app
ports:
- 5002:8080
environment:
- PORT=8080
monster-service:
build: ./monster-service
volumes:
- ./monster-service:/usr/src/app
ports:
- 5003:8080
environment:
- PORT=8080
model-service:
build: ./model-service
volumes:
- ./model-service:/usr/src/app
ports:
- 6000:8080
environment:
- PORT=8080