Page 1 of 1

[Help] Docker container folder issues

Posted: 27 Sep 2025, 01:51
by bkfootball14
Hi,
Was curious if anyone has been able to successfully use tdarr in a container on TOS6. I seem to have an issue where I am unable to have tdarr find my plex library. My library is in the Volume1/PlexMediaFolder/Movies....etc structure. I mapped the container to here /PlexMediaFolder:/media
I have double checked the folder permissions, PUID/PGID are both =0.....i am pretty much at a loss at this point of how to get this container to find my media files. Any advice would be appreciated....

Thanks!

Re: [Help] Docker container folder issues

Posted: 27 Sep 2025, 17:15
by TMlinda
bkfootball14 wrote: 27 Sep 2025, 01:51
We will verify this issue in our lab.

Re: [Help] Docker container folder issues

Posted: 29 Sep 2025, 09:00
by EthanLiu
bkfootball14 wrote: 27 Sep 2025, 01:51
What image version are you using? Please send us the image name or the complete Docker Compose project file and we will arrange for verification as soon as possible.

Re: [Help] Docker container folder issues

Posted: 29 Sep 2025, 20:42
by bkfootball14
Here is the docker compose I am using for the container


services:
tdarr:
image: haveagitgat/tdarr:latest
container_name: tdarr
restart: unless-stopped
ports:
- "8265:8265" # Tdarr Web UI
- "8266:8266" # Tdarr Server port
- "8267:8267" # Tdarr Internal comms
environment:
- TZ=America/New_York
- PUID=0
- PGID=0
volumes:
- /dockerappsdata/tdarr/server:/app/server
- /dockerappsdata/tdarr/config:/app/configs
- /dockerappsdata/tdarr/logs:/app/logs
- /plexmediafolder:/media

Re: [Help] Docker container folder issues

Posted: 30 Sep 2025, 10:22
by EthanLiu
bkfootball14 wrote: 29 Sep 2025, 20:42
You need to fill in the complete path, for example:

Code: Select all

    volumes:
      - /Volume1/dockerappsdata/tdarr/server:/app/server
      - /Volume1/dockerappsdata/tdarr/configs:/app/configs
      - /Volume1/dockerappsdata/tdarr/logs:/app/logs
      - /Volume1/plexmediafolder:/media

Re: [Help] Docker container folder issues

Posted: 30 Sep 2025, 20:49
by bkfootball14
I have tried that configuration and it still does not map to the folder in the docker compose

Re: [Help] Docker container folder issues

Posted: 01 Oct 2025, 23:53
by TMbuddy
bkfootball14 wrote: 30 Sep 2025, 20:49
Hello! To better resolve the issue, please provide a screenshot of the non-functional behavior. Additionally, kindly check your configuration and verify whether the mounted directory has the necessary permissions.