From b2e44369a986ad6651577b23678cc4bd099bcabb Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Wed, 1 Jul 2026 07:24:50 -0700 Subject: [PATCH] librespot: fix CMD args (--enable-audio-cache is invalid; --initial-volume) v0.8.0 librespot uses --disable-audio-cache (audio cache is on by default). Renamed and added --initial-volume 100 for full startup volume. --- infra/librespot/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/librespot/Dockerfile b/infra/librespot/Dockerfile index feb9993..4b1149a 100644 --- a/infra/librespot/Dockerfile +++ b/infra/librespot/Dockerfile @@ -39,5 +39,5 @@ CMD ["librespot", \ "--name", "Klubhaus", \ "--backend", "pulseaudio", \ "--bitrate", "320", \ - "--enable-audio-cache", \ + "--initial-volume", "100", \ "--cache", "/var/cache/librespot"]