Hi everyone,
for the last weeks I used OpenHAB directly installed on my linux machine. The LG WebOS Binding worked without any actions needed from my side. Last weekend I decided to run my stuff in Docker containers (for “reasons” ). I couldn’t find some things automatically, including my television (55B7D).
Topics in the openHAB-forum suggest to put the container in host-network mode and to set the correct NIC in the settings where i chosed the physical NIC (192.168.178.24/24). Here is an except from my docker-compose.yml:
openhab:
image: openhab/openhab:2.4.0
tty: true
network_mode: host
cap_add:
- NET_ADMIN
- NET_RAW
container_name: openhab
restart: always
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
- /opt/openhab/addons:/openhab/addons
- /opt/openhab/conf:/openhab/conf
- /opt/openhab/userdata:/openhab/userdata
environment:
EXTRA_JAVA_OPTS: -Duser.timezone=Europe/Berlin
OPENHAB_HTTP_PORT: 8079
OPENHAB_HTTPS_PORT: 8081
CRYPTO_POLICY: unlimited
Now most of my equipment is detected, but still no television. Following this superuser.com topic I can find my television (executed on the host), so the broadcast does not seem to be my problem.
Does anyone here have another idea what to do in this situation?