-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
51 lines (50 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
version: '3.4'
services:
gridwatch-api:
image: gridwatch-api
build:
context: .
dockerfile: ./apps/api/Dockerfile
environment:
NODE_ENV: production
ports:
- 3333:3333
volumes:
- .:/app
- app/node_modules
gridwatch-public:
image: gridwatch-public
build:
context: .
dockerfile: ./apps/api/Dockerfile
environment:
NODE_ENV: production
ports:
- 4200:4200
volumes:
- .:/app
- app/node_modules
gridwatch-admin:
image: gridwatch-public
build:
context: .
dockerfile: ./apps/admin/Dockerfile
environment:
NODE_ENV: production
ports:
- 4201:4201
volumes:
- .:/app
- app/node_modules
gridwatch-admin:
image: gridwatch-public
build:
context: .
dockerfile: ./apps/admin/Dockerfile
environment:
NODE_ENV: production
ports:
- 4201:4201
volumes:
- .:/app
- app/node_modules