fix: Make livekit use a bindmount for livekit.yml (#243)

Signed-off-by: Jacob Schlecht <dadadah@echoha.us>
pull/253/head
Jacob Schlecht 4 months ago committed by GitHub
parent b0cb09c2ec
commit 0efbeb4f12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -179,13 +179,18 @@ services:
livekit: livekit:
image: ghcr.io/stoatchat/livekit-server:v1.9.6 image: ghcr.io/stoatchat/livekit-server:v1.9.6
depends_on:
redis:
condition: service_started
command: --config /etc/livekit.yml command: --config /etc/livekit.yml
volumes:
- ./livekit.yml:/etc/livekit.yml
ports: ports:
- "7881:7881" - "7881:7881"
- "50000-50100:50000-50100/udp" - "50000-50100:50000-50100/udp"
restart: always restart: always
volumes:
- type: bind
source: ./livekit.yml
target: /etc/livekit.yml
# Create buckets for minio. # Create buckets for minio.
createbuckets: createbuckets:

Loading…
Cancel
Save