-
-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathcompose.yaml
More file actions
29 lines (27 loc) · 638 Bytes
/
compose.yaml
File metadata and controls
29 lines (27 loc) · 638 Bytes
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
services:
api:
image: ghcr.io/slowlydev/f1-dash-api:latest
ports:
- 4010:80
environment:
- RUST_LOG=api=debug
- ADDRESS=0.0.0.0:80
- ORIGIN=http://localhost:3000
realtime:
image: ghcr.io/slowlydev/f1-dash-realtime:latest
ports:
- 4000:80
environment:
- RUST_LOG=realtime=debug
- ADDRESS=0.0.0.0:80
- ORIGIN=http://localhost:3000
web:
image: ghcr.io/slowlydev/f1-dash:latest
depends_on:
- realtime
- api
ports:
- 3000:3000
environment:
- NEXT_PUBLIC_LIVE_URL=http://localhost:4000
- API_URL=http://localhost:4010