chore: initial commit
This commit is contained in:
24
docker-compose.yml
Normal file
24
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user