Hi,
i have installed a fresh Docker with Portainer on my Raspi 4b and i have a SATIP Server (MEG-8000 from Megasat)
Before i run TVHeadend on the Host with Firewall Ports 9981-9983 and the UDP 30000-65000 because TVHeadend searches randomly in this UDP Adress for the SATIP Server at startup.
Now i have Docker.
The Question is, is there a way to use Docker in Network Bridged Mode for this SATIP Server or does it only work with Network Host Mode ?
You can run it in bridge mode if you know the IP’s/ports tvheadend needs to connect to. Running it in host networking mode does just make life easier.
The Problem is i cant’t test it with Docker Compose File in Portainer because it crashes when i set a Port Range e.g.:
---
services:
tvheadend:
image: lscr.io/linuxserver/tvheadend:latest
container_name: tvheadend
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- RUN_OPTS= #optional
volumes:
- /path/to/tvheadend/data:/config
- /path/to/recordings:/recordings
ports:
- 9981:9981
- 9982:9982
- 9983:9983
- 30000-65000:30000-65000/udp
devices:
- /dev/dri:/dev/dri #optional
- /dev/dvb:/dev/dvb #optional
restart: unless-stopped
It seems to be an Docker issue itself, i have found many Issues on Github but all ignored or closed.
At this time this Port Range dont work, so we need to use HOST as network mode.
It works now with Bridged Mode but i have no Signal Strength anymore.
Ideas ?