Setting up paths

Sonarr version (exact version): 2.0.0.5085
Mono version (if Sonarr is not running on Windows): 5.4.1.6
OS: Docker on Ubuntu Server 17.10
Debug logs:
(Make sure debug logging is enabled in settings and post the full log to hastebin/pastebin/dropbox/google drive or something similar, do not post them directly here)
Description of issue:

Hey, I’m sorry you’re probably sick of seeing these type of threads. I have an issue, where i can’t map my DDWRT nas to sonarr.

here is the the paths I’m trying to add

here is a screenshot of my transmission daemon so I’m guessing thats my remote path

below i added thes the smb path

I’m probably doing something obviously wrong, i have spent a few days on it and I can’t get it to work, could someone help me please :slight_smile:
thanks

You need to mount the SMB share to your docker container (probably to the host then add a volume to add it to the container). \\dd-wrt\DDWRT\Downloads is a Windows UNC path and won’t work in the docker container.

Just started looking at this myself but I think this would do it.

Docker Host: mount -v -t cifs -o “user=youruser,password=yourpass,uid=youruid,gid=yourgid,rw” //dd-wrt/DDWRT/Downloads /mnt/Downloads
Docker Container: -v /mnt/Downloads:/mnt/Downloads:rw
Local Path: /mnt/Downloads

I got it working, you can lock this thread. Mounting the drive in linux took way more than expected, also had permission issues. Managed to get it working with trial and error

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.