-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweb10.app.yml
116 lines (114 loc) · 2.67 KB
/
web10.app.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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
version: "3"
services:
prod-api: # The web10 API, that holds all the data.
build: api
ports:
- "10001:80"
environment:
- VIRTUAL_HOST=api.web10.app
- INFISICAL
- PROVIDER=api.web10.app
- DB=deploy
- STRIPE_STATUS=live
networks:
- all-spark-proxy
restart: always
deploy:
resources:
reservations:
memory: 256M
prod-auth: # The web10 Authenticator, the UI for managing the web10 API
build:
context: .
dockerfile: auth/Dockerfile
target: deploy
environment:
PORT: 80
VIRTUAL_HOST: auth.web10.app
CHOKIDAR_USEPOLLING: "true"
REACT_APP_DEFAULT_API: api.web10.app
REACT_APP_VERIFY_REQURED: "true"
REACT_APP_PAY_REQUIRED: "true"
ports:
- '10002:80'
restart: always
deploy:
resources:
reservations:
memory: 256M
networks:
- all-spark-proxy
prod-rtc: # web10 RTC, responsible for webRTC P2P connections on web10.
build: rtc
environment:
PORT: 80
VIRTUAL_HOST: rtc.web10.app
CHOKIDAR_USEPOLLING: "true"
ports:
- '10003:80'
restart: always
deploy:
resources:
reservations:
memory: 256M
networks:
- all-spark-proxy
prod-crm: # web10 CRM, a demo app on web10 to check core functionality / data management is working.
build:
context: .
dockerfile: crm/Dockerfile
ports:
- "10004:80"
environment:
VIRTUAL_HOST: crm.web10.app
restart: always
deploy:
resources:
reservations:
memory: 256M
networks:
- all-spark-proxy
prod-docs: # web10 docs, the web10 documentation on how to use it as a developer
build: sdk
ports:
- "10005:80"
environment:
VIRTUAL_HOST: docs.web10.app
restart: always
deploy:
resources:
reservations:
memory: 256M
networks:
- all-spark-proxy
prod-home: # web10 home, the homepage that explains the mission + about web10.
build: home
ports:
- "10006:80"
environment:
VIRTUAL_HOST: web10.app
restart: always
deploy:
resources:
reservations:
memory: 256M
networks:
- all-spark-proxy
prod-mail: # web10 mail, a demo app on web10 to check webRTC + cross communication is working.
build:
context: .
dockerfile: mail/Dockerfile
ports:
- "10007:80"
environment:
VIRTUAL_HOST: mail.web10.app
restart: always
deploy:
resources:
reservations:
memory: 256M
networks:
- all-spark-proxy
networks:
all-spark-proxy:
external: true