-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
59 lines (53 loc) · 1.06 KB
/
docker-compose.yaml
File metadata and controls
59 lines (53 loc) · 1.06 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
version: "3.7"
services:
broker:
image: nats-streaming:0.20-alpine
command: -cid broker
ports:
- 4222:4222
ping:
build: ../ping-service
ports:
- 3000:3000
env_file:
- ../ping-service/.env
volumes:
- ./node_modules
- ../ping-service/:/usr/src/app
depends_on:
- broker
mesa-principal:
build: ../mesa-principal-service
ports:
- 3001:3000
env_file:
- ../mesa-principal-service/.env
volumes:
- ./node_modules
- ../mesa-principal-service/:/usr/src/app
depends_on:
- broker
usuario:
build: ../usuario-service
ports:
- 3002:3000
env_file:
- ../usuario-service/.env
volumes:
- ./node_modules
- ../usuario-service/:/usr/src/app
depends_on:
- broker
palavra-chave:
build: ../palavra-chave-service
ports:
- 3003:3000
env_file:
- ../palavra-chave-service/.env
volumes:
- ./node_modules
- ../palavra-chave-service/:/usr/src/app
depends_on:
- broker
volumes:
deps: