first i have to admit i'm still a beginner in terms of linux and domoticz. Hope, i'll be able to give the relevant information to a helping hand...

Years ago i managed to integrate all of my 433-plugs, working perfectly. i try go get that change to docker mentioned above getting work with my 433 switches. Receiver and sender are attached to raspberry gpio.
In native installation, i installed wiringPi and RpiUtils to get codesend, in domoticz i added dummy hardware units, each switch with an aciton on/off script like this "script:///433Utils/RPi_utils/codesend xxxxxxx"
Got stable docker image run with this composer script....
Code: Select all
version: '2'
services:
domoticz:
image: domoticz/domoticz
container_name: domoticz
restart: unless-stopped
# Pass devices to container
# devices:
# - "/dev/serial/by-id/usb-0658_0200-if00:/dev/ttyACM0"
ports:
- "8440:8080"
- "8443:443"
volumes:
- ./config:/home/Docker1evp/.config/domoticz
environment:
- TZ=Europe/Berlin
#- LOG_PATH=/opt/domoticz/userdata/domoticz.log
Thanx in advance,
Klaus