forked from nostrnests/nests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dev.yml
59 lines (59 loc) · 1.26 KB
/
docker-compose-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
volumes:
postgres:
strfry:
redis:
services:
livekit:
image: livekit/livekit-server:latest
command: --config /etc/livekit.yaml
restart: unless-stopped
volumes:
- ./compose-config/livekit-dev.yaml:/etc/livekit.yaml
depends_on:
- redis
ports:
- "7880:7880"
livekit-egress:
image: livekit/egress:latest
restart: unless-stopped
environment:
- "EGRESS_CONFIG_FILE=/etc/egress.yaml"
ports:
- "7980:7980"
volumes:
- ./compose-config/egress.yaml:/etc/egress.yaml
- ./recordings:/data/recordings
depends_on:
- livekit
- redis
redis:
image: redis:latest
restart: unless-stopped
ports:
- "6679:6379"
volumes:
- redis:/data
postgres:
image: "postgres:15"
restart: unless-stopped
ports:
- "25333:5432"
volumes:
- "postgres:/var/lib/postgresql/data"
environment:
- "POSTGRES_DB=nests"
- "POSTGRES_HOST_AUTH_METHOD=trust"
strfry:
image: dockurr/strfry
restart: unless-stopped
ports:
- "7777:7777"
volumes:
- strfry:/app/strfry-db
- ./compose-config/strfry.conf:/etc/strfry.conf
ui:
restart: unless-stopped
build:
context: NestsUI
ports:
- "8089:8080"