Anyone have the correct Docker Compose to get the Channels DVR TVE container running using Windows Docker Desktop with WSL2 (Linux compatible) and Portainer?
The Compose on hub.docker.com reads like this:
channels-dvr:
image: fancybits/channels-dvr:latest
container_name: channels-dvr
network_mode: host
ports:
- "8089:8089"
restart: unless-stopped
devices:
- /dev/dri:/dev/dri
volumes:
- /mnt/disk/dvr/config:/channels-dvr
- /mnt/disk/dvr/recordings:/shares/DVR
I know that the "latest" tag needs to be changed to "tve" (since I need TV Everywhere), "network mode: host" needs to be removed (no support for Bonjour apparently), and "devices: -/dev/dri:/dev/dri" also must be removed (removing support for hardware transcoding maybe?). So I guess I just need to know how to map the needed volumes. I've tried a few things, but I'm getting warnings about the paths being outside the container or the like (apparently resulting in poor performance?).
If anyone has a working set of Compose commands that I can plug into a Portainer Stack under Windows -- I'd appreciate it!