mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-24 17:28:40 +00:00
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:
parent
07c7778cff
commit
07501d9cfa
2 changed files with 21 additions and 0 deletions
|
@ -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
10
livekit.yaml
Normal 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
|
Loading…
Reference in a new issue