I have the following setup. I am runnung a dockerized version of nzbdrone with a mount comprising of my tvshows using the volumes switch (-v /media/nfs/tv:/media/tv). So docker sees /media/tv.
The /media/nfs/tv is a NFS mount to my unRAID box which is mounted via the fstab. The problem I’m experiencing is that every so often a show’s episode count drops to 0 and I have to update the series for nzbdrone to re-discover the files.
Like I said it happens sporatically. I don’t have any logs but I think that the problem here is that unRAID puts certain disks to sleep as part of its power management and perhaps when docker tries to access the disks, shows appear to have been deleted but in fact the disk is simply asleep.
I’m mounting my NFS share like:
192.168.1.9:/mnt/user/tv /media/nfs/tv nfs auto,noatime,nolock,bg,nfsvers=3,intr,tcp,actimeo=1800 0 0
Just wondering if people have thoughts here. I understand it’s a unorthodox setup.