From e1ba5a3afb0f8e1b3fb710839de8fb9e83f665c7 Mon Sep 17 00:00:00 2001 From: Jacob Schlecht Date: Thu, 26 Feb 2026 00:04:39 -0700 Subject: [PATCH] fix: Make livekit use a bindmount for livekit.yml This commit was made without the use of generative AI. Signed-off-by: Jacob Schlecht --- compose.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/compose.yml b/compose.yml index 91b5343..8f71467 100644 --- a/compose.yml +++ b/compose.yml @@ -179,13 +179,18 @@ services: livekit: image: ghcr.io/stoatchat/livekit-server:v1.9.6 + depends_on: + redis: + condition: service_started command: --config /etc/livekit.yml - volumes: - - ./livekit.yml:/etc/livekit.yml ports: - "7881:7881" - "50000-50100:50000-50100/udp" restart: always + volumes: + - type: bind + source: ./livekit.yml + target: /etc/livekit.yml # Create buckets for minio. createbuckets: