Add LiveKit server to Docker Compose (#7907)

This PR adds the LiveKit server to the Docker Compose setup.

All of the dependencies needed to run the collab server are now
encapsulated within Docker Compose.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-02-16 10:49:48 -05:00 committed by GitHub
parent 07c7778cff
commit 07501d9cfa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 21 additions and 0 deletions

View File

@ -24,5 +24,16 @@ services:
volumes:
- ./.blob_store:/data
livekit_server:
image: livekit/livekit-server
container_name: livekit_server
entrypoint: /livekit-server --config /livekit.yaml
ports:
- 7880:7880
- 7881:7881
- 7882:7882/udp
volumes:
- ./livekit.yaml:/livekit.yaml
volumes:
postgres_data:

10
livekit.yaml Normal file
View File

@ -0,0 +1,10 @@
development: true
port: 7880
rtc:
udp_port: 7882
tcp_port: 7881
use_external_ip: false
keys:
devkey: secret
logging:
level: debug