I have finally updated to this version after problems with docker because of migration to nftables (Turris OS 7.1 is out! - #50 by cendalc). The solution is to use docker compose
and use network_mode: host
(recommneded here: Turris OS 7.1 is out! - #53 by fordovo . With that, my home assistant and ebusd containers can access LAN as previously.
My /ect/init/dockerd
config (should be almost the default one):
config globals 'globals'
option data_root '/srv/docker/'
option log_level 'warn'
option iptables '1'
config firewall 'firewall'
option device 'docker0'
list blocked_interfaces 'wan'
docker-compose.yml
for home assistant:
version: "3.8"
services:
homeassistant:
container_name: homeassistant
image: ghcr.io/home-assistant/home-assistant:stable
privileged: true
restart: unless-stopped
environment:
- TZ=Europe/Prague
volumes:
- /srv/ha_config:/config
network_mode: host