From 387e0ad03e5f6e84099a607d42f41c0d0f6f1798 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Fri, 3 Apr 2020 14:27:30 +0200 Subject: [PATCH] Adjust dbus support for pulse (#1626) --- supervisor/docker/audio.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/supervisor/docker/audio.py b/supervisor/docker/audio.py index e5b4cb752..ccc71e079 100644 --- a/supervisor/docker/audio.py +++ b/supervisor/docker/audio.py @@ -31,7 +31,8 @@ class DockerAudio(DockerInterface, CoreSysAttributes): def volumes(self) -> Dict[str, Dict[str, str]]: """Return Volumes for the mount.""" volumes = { - str(self.sys_config.path_extern_audio): {"bind": "/data", "mode": "rw"} + str(self.sys_config.path_extern_audio): {"bind": "/data", "mode": "rw"}, + "/run/dbus": {"bind": "/run/dbus", "mode": "ro"}, } # SND support