Jump to content

Deluge Docker Problem


Recommended Posts

First time ever using Dockers.  I managed to install the Deluge Docker successfully.  Where I'm having a problem is downloading a file.  I've added a torrent for a test and trying to download a small flac file.  It downloads and completes but I can't find the file anywhere. 

 

In the preferences for Download I have the path /cache/deluge/downloads.  But the folder is empty.  I'm sure it's something very basic I'm overlooking...but what?

Link to comment

For the life of me I can't figure this out.  I tried various paths but nothing seems to work.

 

On my cache drive I have a folder called Deluge.  Below that I have the following folders

/config

/downloads

/torrents

 

On the Shares page, I can see a share called deluge.  For Use Cache Disk I have it set to No but not sure if it should be set to Yes.

 

 

 

Link to comment
  • 4 years later...

This is an old post but figured someone might find the answer helpful. When using docker you need to define the volume that deluge will use and a location on your OS. This will create a shared folder which your docker container and your OS can see/use. I am using Docker on Windows 10. I have a batch file that I use to create this container. If you really want to get advanced you can use docker-compose which has yaml based configuration files which are easy to maintain.

 

Example:

docker create --name=deluge --net=host -e PUID=1000 -e PGID=1000 -e UMASK_SET=022 -e TZ=America/Chicago -v C:\Docker\deluge\config:/config -v C:\Torrents\incomplete:/downloads -v C:\Torrents\completed:/completed --restart unless-stopped linuxserver/deluge:latest

 

Edited by jaskohl
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...