From b02d7b00e9559c187522b7e3b04e48ce985e5456 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 29 Dec 2023 14:54:52 +0000 Subject: [PATCH] Bot Updating Documentation --- docs/images/docker-homeassistant.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/images/docker-homeassistant.md b/docs/images/docker-homeassistant.md index 3a68fefac..525f11aed 100755 --- a/docs/images/docker-homeassistant.md +++ b/docs/images/docker-homeassistant.md @@ -53,11 +53,11 @@ order for this to work you must create the container with `--net=host`. ### Accessing Bluetooth Device -In order to provide HA with access to the host's Bluetooth device, one needs to install BlueZ on the host, add the capabilities `NET_ADMIN` and `NET_RAW` to the container, and map dbus as shown in the below examples. +In order to provide HA with access to the host's Bluetooth device, one needs to install BlueZ on the host, add the capabilities `NET_ADMIN` and `NET_RAW` to the container, and map dbus as a volume as shown in the below examples. #### Docker Cli: ```bash ---cap-add=NET_ADMIN --cap-add=NET_RAW --device /var/run/dbus:/var/run/dbus:ro +--cap-add=NET_ADMIN --cap-add=NET_RAW -v /var/run/dbus:/var/run/dbus:ro ``` #### Docker Compose: @@ -65,7 +65,7 @@ In order to provide HA with access to the host's Bluetooth device, one needs to cap_add: - NET_ADMIN - NET_RAW - devices: + volumes: - /var/run/dbus:/var/run/dbus:ro ```