Skip to content

Docker Installation

mak-gitdev edited this page Jan 12, 2023 · 5 revisions

Docker Installation

A docker image is now available for the development version.

Install Docker

You can now use HA_enoceanmqtt directly in Home Assistant as an addon, or standalone as an install on a Linux system or as a docker container (typically for those using Home Assistant container).

Depending on your architecture, you can now use:

docker pull makgitdev/ha_enoceanmqtt_dev-amd64

or

docker pull makgitdev/ha_enoceanmqtt_dev-aarch64

or

docker pull makgitdev/ha_enoceanmqtt_dev-armhf

Then:

  • Mount the /config volume and your enocean device.
  • Adapt the enoceanmqtt.conf.sample file in the /config folder to set parameters as well as devices to manage.

The volume mount has to point to -v /local/path/to/configfile:/config. Or pass a docker volume created using the docker volume create command.

Example docker command:

sudo docker run --device=/dev/enocean -v my_docker_volume:/config makgitdev/ha_enoceanmqtt_dev-aarch64

You can add --debug to enable debug messages.

Clone this wiki locally