chore: initial commit

This commit is contained in:
albertfj114
2026-03-29 22:02:20 -04:00
commit edc367b31a
9 changed files with 360 additions and 0 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
version: "3.9"
services:
livekit:
image: livekit/livekit-server:latest
restart: unless-stopped
ports:
- "7880:7880"
- "7881:7881"
- "50000-50100:50000-50100/udp"
volumes:
- ./livekit.yaml:/etc/livekit.yaml
command: --config /etc/livekit.yaml
choir-mixer:
build:
context: ./choir-mixer
dockerfile: Dockerfile
environment:
- LIVEKIT_URL=ws://livekit:7880
- LIVEKIT_API_KEY=${LIVEKIT_API_KEY}
- LIVEKIT_API_SECRET=${LIVEKIT_API_SECRET}
depends_on:
- livekit
restart: unless-stopped