Skip to content

Bluetooth Issues

Donavan Becker edited this page Jan 21, 2023 · 5 revisions

List of Helpful BLE Issues

  • #425: Docker/Noble Issue
  • #511: Bluetooth HCI socket failing to download

For Docker:

For most systems, the Dbus socket is in /run/dbus. The socket must be available in the container for a Homebridge plugin to be able to connect to Dbus and access the Bluetooth adapter. When starting with docker run, this can be accomplished by adding -v /run/dbus:/run/dbus:ro to the command. If the Dbus socket is in /var/run/dbus on the host system, use -v /var/run/dbus:/run/dbus:ro instead.

If you are using Docker Compose, add something like the following (adjust as necessary) to your volumes section:

volumes:
  - /run/dbus:/run/dbus:ro
Clone this wiki locally