From bb9e7ae23cb12df75d8879c0f3caf5229a09f474 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Sun, 14 Sep 2025 18:32:58 +0200 Subject: [PATCH] Add missing volume mounts for coturn and redis These directories were marked as volumes in their dockerfile, but nothing was explicitly mounted on them. This makes docker create an unnamed volume and mount that when the container is created, which means that on every down/up cycle, it would leave two unnamed volumes lingering around. Explicitly mounting these data directories prevents this. --- docker-compose.tmpl.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.tmpl.yml b/docker-compose.tmpl.yml index 7f8acd19..ea1ca906 100644 --- a/docker-compose.tmpl.yml +++ b/docker-compose.tmpl.yml @@ -207,6 +207,8 @@ services: networks: bbb-net: ipv4_address: 10.7.7.5 + volumes: + - ./data/redis:/data webrtc-sfu: build: @@ -495,6 +497,7 @@ services: - "--relay-ip=${EXTERNAL_IPv6:-::1}" volumes: - ./mod/coturn/turnserver.conf:/etc/coturn/turnserver.conf + - ./data/coturn:/var/lib/coturn network_mode: host