-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
55 lines (54 loc) · 990 Bytes
/
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
version: '3.8'
services:
core:
build:
context: .
dockerfile: apps/core/Dockerfile
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
ports:
- "8080:3000"
environment:
- NODE_ENV=qa
env_file:
- .env
inbox:
build:
context: .
dockerfile: apps/inbox/Dockerfile
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
ports:
- "3000:3000"
environment:
- NODE_ENV=qa
env_file:
- .env
gpt:
build:
context: .
dockerfile: apps/gpt/Dockerfile
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
ports:
- "8081:3000"
environment:
- NODE_ENV=qa
env_file:
- .env
outbox:
build:
context: .
dockerfile: apps/outbox/Dockerfile
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
ports:
- "8082:3000"
environment:
- NODE_ENV=qa
env_file:
- .env