Hey I've been struggling for awhile trying to get Handbrake and MakeMKV to run right in the docker jails using TrueNAS. I've set up the jails and even have a JellyFin container that works flawlessly in accessing the data located in folders outside the Docker Jail data set. However I can not for the life of me get Handbrake and MakeMKV to do the same.

This is a sample of the compose file I have

version: "3"

services:

handbrake:

image: jlesage/handbrake

environment:

  • PUID=3003

  • PGID=3003

privileged: true

ports:

  • 8081:5800

volumes:

  • /mnt/data/handbrake/config:/config:rw

  • /mnt/data/handbrake/watch:/watch:rw

  • /mnt/data/MakeMKV/movies:/storage:ro

  • /mnt/DataStorage/Media/Movies:/output:rw

  • /mnt/DataStorage/Media/TVShows:/output:rw

And when I open Handbrake all it can do is access empty default folders rather than the actual data I need it to access. Same with MakeMKV, it outputs to a totally different folder than where I want it to and can't seem to locate the folder it should be using. Anyone have a similar issue and know how to fix it?