2023-10-01, 01:30 AM
(This post was last modified: 2023-10-01, 01:31 AM by QuiteConfused.)
Hello and thanks in advance for any help you can provide!
Currently I'm moving from a setup with MythTv with a legacy HDHomeRun HDHR (2 tuner) to using Docker on Debian 12. I'm able to see the two tuners in Settings -> Devices, but clicking "Scan channels" on tuner XXXXX-0 leaves me on a screen which is stuck and says "Loading EPG mapping". I'm using Schedules Direct for ATSC, and I was able to successfully login under Settings-> Guide.
My Docker compose file:
HDHomeRun FW is version 20221023
Edit: Formating
Currently I'm moving from a setup with MythTv with a legacy HDHomeRun HDHR (2 tuner) to using Docker on Debian 12. I'm able to see the two tuners in Settings -> Devices, but clicking "Scan channels" on tuner XXXXX-0 leaves me on a screen which is stuck and says "Loading EPG mapping". I'm using Schedules Direct for ATSC, and I was able to successfully login under Settings-> Guide.
My Docker compose file:
Code:
version: '3.3'
services:
nextpvr_amd64:
container_name: nextpvr
volumes:
- '/home/kirchman/docker/nextpvr/config:/config'
- '/mnt/recordings:/recordings'
- '/home/kirchman/docker/nextpvr/buffer:/buffer'
restart: unless-stopped
environment:
- HOST_IP=192.168.1.67
ports:
- '8866:8866'
- '16891:16891/udp'
- '8026:8026/udp'
image: 'nextpvr/nextpvr_amd64:stable'
HDHomeRun FW is version 20221023
Edit: Formating