Hi guys, I have tvheadend installed on theDebian host system, but I would like to use it from aDocker container but it can't find the tuner. From Debian without Docker it recognizes it perfectly.
This is the docker compose. My tuner is an xboxone TV tunner and from tvheadend installed in Debian it says that it is in this path:
/dev/dvb/adapter0
I add that path to docker-compose but once the container is mounted it doesn't find any tuner. Maybe you are doing something wrong.
Debian:
https://i.imgur.com/0pnEoF1.jpg
Docker:
https://i.imgur.com/xINnzQd.jpg
Docker compose:
tvheadend:
version: "3"
services:
tvheadend:
image: lscr.io/linuxserver/tvheadend
container_name: tvheadend
network_mode: host
environment:
- PUID=1001
- PGID=100
- TZ=Europe/Madrid
volumes:
- /_aplicaciones/tvheadend:/config
- /srv/dev-disk-by-uuid-c8175ed0-e2a8-473f-846c-36e5dc79e4bd/GRABACIONES_TV:/recordings
ports:
- 9999:9981
- 9991:9982
devices:
- /dev/dri:/dev/dri #optional
- /dev/dvb/adapter0:/dev/dvb #optional
restart: unless-stopped