2024-01-04, 04:08 PM
When you're configuring your NAS to run NextPVR in a docker container, you need to tell it what directories will be mapped into the container.
ie, take a look at the docker install instructions here https://hub.docker.com/r/nextpvr/nextpvr_amd64. Specifically:
This is saying, map /home/graeme/videos from the host system, to appear as /recordings inside the container.
NextPVR running in the container is configured to record to /recordings by default, meaning the files will be created in /home/graeme/videos
ie, take a look at the docker install instructions here https://hub.docker.com/r/nextpvr/nextpvr_amd64. Specifically:
Code:
--volume /home/graeme/config:/config \
--volume /home/graeme/videos:/recordings \
--volume /home/graeme/videos:/buffer \
NextPVR running in the container is configured to record to /recordings by default, meaning the files will be created in /home/graeme/videos