forked from nostrnests/nests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
54 lines (54 loc) · 1.26 KB
/
docker-compose.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
volumes:
postgres:
redis:
recordings:
services:
livekit:
image: livekit/livekit-server:latest
command: --config /etc/livekit.yaml
restart: unless-stopped
network_mode: host
volumes:
- ./compose-config/livekit-prod.yaml:/etc/livekit.yaml
depends_on:
- redis
livekit-egress:
image: livekit/egress:latest
restart: unless-stopped
environment:
- "EGRESS_CONFIG_FILE=/etc/egress.yaml"
volumes:
- ./compose-config/egress.yaml:/etc/egress.yaml
- recordings:/data/recordings
depends_on:
- livekit
- redis
redis:
image: redis:latest
restart: unless-stopped
volumes:
- redis:/data
postgres:
image: "postgres:15"
restart: unless-stopped
volumes:
- "postgres:/var/lib/postgresql/data"
environment:
- "POSTGRES_DB=nests"
- "POSTGRES_HOST_AUTH_METHOD=trust"
backend:
restart: unless-stopped
build:
context: .
dockerfile: NestsBackend/Dockerfile
volumes:
- ./NestsBackend/appsettings.compose.json:/app/appsettings.Production.json
- recordings:/data/recordings
ui:
restart: unless-stopped
build:
context: NestsUI
args:
- "NGINX_CONF=nginx.compose.conf"
ports:
- "8089:8080"