From 1db481ac26e1a486a97ba90b2e587e7f5f6ae5fe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 19 Sep 2025 20:20:30 +0000 Subject: [PATCH] Bot Updating Documentation --- docs/images/docker-homeassistant.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/images/docker-homeassistant.md b/docs/images/docker-homeassistant.md index 3fa40a3425..b2d9d0399b 100755 --- a/docs/images/docker-homeassistant.md +++ b/docs/images/docker-homeassistant.md @@ -59,7 +59,7 @@ In order to provide HA with access to the host's Bluetooth device, one needs to #### Docker Cli: ```bash ---cap-add=NET_ADMIN --cap-add=NET_RAW -v /var/run/dbus:/var/run/dbus:ro +--cap-add=NET_ADMIN --cap-add=NET_RAW -v /run/dbus:/run/dbus:ro ``` #### Docker Compose: @@ -68,9 +68,11 @@ In order to provide HA with access to the host's Bluetooth device, one needs to - NET_ADMIN - NET_RAW volumes: - - /var/run/dbus:/var/run/dbus:ro + - /run/dbus:/run/dbus:ro ``` +If the dbus path on host differs, such as `/var/run/dbus`, then you can map it as `/var/run/dbus:/run/dbus:ro`. + ### Using the Ping integration For the [Ping][ping0] integration to work, the capability `NET_RAW` must be added to the container. See above for instructions. @@ -375,6 +377,7 @@ To help with development, we generate this dependency graph. ## Versions +* **19.09.25:** - Add the necessary capabilities in the container to allow the unprivileged user access to bluetooth stack. * **03.01.25:** - Rebase to alpine 3.21. * **04.12.24:** - Make setcap target dynamic. * **07.11.24:** - Add go2rtc binary.