YADD (Yet another Domoticz Dockerfile) Installing latest Domoticz beta on a minimal Debian stretch image (https://doi-janky.infosiftr.net/job/tianon/job/debuerreotype/job/arm32v7/lastSuccessfulBuild/artifact/stretch/slim/rootfs.tar.xz")
Loosely based on two other Domoticz images for armhf:
Tested on Cubox running Docker 19.03.5 on Armbian Debian Buster
docker build --rm -f "Dockerfile" -t tikatuka/domoticz-armhf:latest "."
Uses a config directory in /home/domoticz/config, passes devices for P1 and Z-Wave.
docker create \
--name=domoticz-armhf \
-e PUID=1001 \
-e PGID=1001 \
-e TZ=Europe/Amsterdam \
-p 8080:8080 \
-v /home/domoticz/config/:/config \
--restart unless-stopped \
--device /dev/ttyUSB0:/dev/ttyUSB0 \
--device /dev/ttyUSB-ZStick-5G:/dev/ttyUSB-ZStick-5G \
tikatuka/domoticz-armhf:latest
docker container start domoticz-armhf