From 0efbeb4f124feb45956e51999408b89ebf5866d3 Mon Sep 17 00:00:00 2001 From: Jacob Schlecht Date: Thu, 26 Feb 2026 17:42:26 -0700 Subject: [PATCH] fix: Make livekit use a bindmount for livekit.yml (#243) 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: