-
Notifications
You must be signed in to change notification settings - Fork 519
/
compose.yaml
84 lines (75 loc) · 1.36 KB
/
compose.yaml
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
76
77
78
79
80
81
82
83
84
services:
shared-assets:
build: ./shared/assets
container_name: shared-assets
shared-data:
build: ./shared/data
container_name: shared-data
shared-styles:
build: ./shared/styles
container_name: shared-styles
root:
build: ./
container_name: root
depends_on:
- shared-assets
- shared-data
- shared-styles
host:
build: ./apps/host
container_name: host
ports:
- 6010:6010
env_file:
- ./docker-env/.env
stdin_open: true
tty: true
depends_on:
- root
css:
build: ./apps/css
container_name: css
ports:
- 6011:6011
env_file:
- ./docker-env/.env
depends_on:
- root
javascript:
build: ./apps/javascript
container_name: javascript
ports:
- 6012:6012
env_file:
- ./docker-env/.env
depends_on:
- root
react:
build: ./apps/react
container_name: react
ports:
- 6013:6013
stdin_open: true
tty: true
env_file:
- ./docker-env/.env
depends_on:
- root
vue:
build: ./apps/vue
container_name: vue
ports:
- 6014:6014
env_file:
- ./docker-env/.env
depends_on:
- root
angular:
build: ./apps/angular
container_name: angular
ports:
- 6015:6015
env_file:
- ./docker-env/.env
depends_on:
- root