-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.development.yml
More file actions
75 lines (74 loc) · 1.88 KB
/
Copy pathdocker-compose.development.yml
File metadata and controls
75 lines (74 loc) · 1.88 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
version: "3"
services:
server:
build:
context: ./server
dockerfile: DEV.Dockerfile
ports:
- "4000:4000"
volumes:
- ./server:/app:cached
- server-node-modules:/app/node_modules/
command: ["sh","-c","yarn start"]
merge-client:
build:
context: ./merge-client
dockerfile: DEV.Dockerfile
environment:
REACT_APP_API_HOST: 'http://localhost:4000'
ports:
- "3000:3000"
volumes:
- ./merge-client:/app:cached
- merge-client-node-modules:/app/node_modules/
convert-client:
build:
context: ./convert-client
dockerfile: DEV.Dockerfile
environment:
REACT_APP_API_HOST: 'http://localhost:4000'
ports:
- "3001:3001"
volumes:
- ./convert-client:/app:cached
- convert-client-node-modules:/app/node_modules/
jsonpath-client:
build:
context: ./jsonpath-client
dockerfile: DEV.Dockerfile
environment:
REACT_APP_API_HOST: 'http://localhost:4000'
ports:
- "3002:3002"
volumes:
- ./jsonpath-client:/app:cached
- jsonpath-client-node-modules:/app/node_modules/
template-client:
build:
context: ./template-client
dockerfile: DEV.Dockerfile
environment:
REACT_APP_API_HOST: 'http://localhost:4000'
ports:
- "3003:3003"
volumes:
- ./template-client:/app:cached
- template-client-node-modules:/app/node_modules/
home-client:
build:
context: ./home-client
dockerfile: DEV.Dockerfile
ports:
- "8080:8080"
volumes:
- ./home-client:/app:cached
- ./home-client/docs:/docs:cached
- home-client-node-modules:/app/node_modules/
command: ["sh","-c","yarn start"]
volumes:
server-node-modules:
merge-client-node-modules:
home-client-node-modules:
convert-client-node-modules:
jsonpath-client-node-modules:
template-client-node-modules: