-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweb10.dev.yml
74 lines (72 loc) · 1.66 KB
/
web10.dev.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
version: "3"
services:
api_dev: # The web10 API, that holds all the data.
build: api
ports:
- "10011:80"
environment:
- VIRTUAL_HOST=api.web10.dev
- INFISICAL
- PROVIDER=api.web10.dev
- DB=dev
networks:
- all-spark-proxy
restart: always
deploy:
resources:
reservations:
memory: 256M
auth_dev: # The web10 Authenticator, the UI for managing the web10 API
build:
context: .
dockerfile: auth/Dockerfile
target: deploy
environment:
PORT: 80
VIRTUAL_HOST: auth.web10.dev
CHOKIDAR_USEPOLLING: "true"
REACT_APP_DEFAULT_API: api.web10.dev
REACT_APP_VERIFY_REQURED: "true"
REACT_APP_PAY_REQUIRED: "true"
networks:
- all-spark-proxy
ports:
- '10012:80'
restart: always
deploy:
resources:
reservations:
memory: 256M
rtc_dev: # web10 RTC, responsible for webRTC P2P connections on web10.
build: rtc
environment:
PORT: 80
VIRTUAL_HOST: rtc.web10.dev
CHOKIDAR_USEPOLLING: "true"
ports:
- '10013:80'
networks:
- all-spark-proxy
restart: always
deploy:
resources:
reservations:
memory: 256M
crm_dev: # web10 CRM, a demo app on web10 to check core functionality / data management is working.
build:
context: .
dockerfile: crm/Dockerfile
ports:
- "10014:80"
environment:
VIRTUAL_HOST: crm.web10.dev
networks:
- all-spark-proxy
restart: always
deploy:
resources:
reservations:
memory: 256M
networks:
all-spark-proxy:
external: true