Skip to content

Commit

Permalink
Add LiveKit server to Docker Compose (#7907)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
maxdeviant authored Feb 16, 2024
1 parent 07c7778 commit 07501d9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 10 additions & 0 deletions livekit.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 07501d9

Please sign in to comment.