From f22a38d46f517742c1da627650ea2a7dadcfd8a6 Mon Sep 17 00:00:00 2001 From: feldjaeger Date: Fri, 6 Mar 2026 11:16:52 +0100 Subject: [PATCH] Add LiveKit service configuration to compose.yaml --- compose.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/compose.yaml b/compose.yaml index e467d27..f7bc57d 100644 --- a/compose.yaml +++ b/compose.yaml @@ -39,3 +39,15 @@ services: restart: unless-stopped ports: - "8081:80" + + livekit: + image: livekit/livekit-server:latest + container_name: livekit + restart: unless-stopped + ports: + - "7880:7880" + - "7881:7881" + - "50000-60000:50000-60000/udp" + command: --config /etc/livekit/config.yaml + volumes: + - /app-config/matrix/livekit/config.yaml:/etc/livekit/config.yaml