Sign inSign up

automatr901/deluge

By automatr901

•Updated almost 5 years ago

Deluge Container

Image
0

1.5K

automatr901/deluge repository overview

⁠Deluge Docker Image

Creates a docker image running deluge with deluge-web.

⁠Volumes

  • /opt/deluge/config
    • This contains the deluge and deluge web configuration files, these are generated if they do not already exist
  • /opt/deluge/data
    • This contains the files downloaded by deluge

⁠Environment

  • PYTHON_EGG_CACHE = This is the location to store Python Eggs, without this Deluge plugins will not work
  • PUID = The UID of the Deluge user
  • PGID = The GID of the Deluge group
  • USER_NAME = The name of the application user
  • APP_NAME = The name of the folder containing the application in /opt

⁠Configuration

Configure Deluge via the web client, downloads should be stored in the mounted volume /opt/deluge/data

⁠Running

An example command to run the image

    sudo docker run -d --name Deluge --restart unless-stopped -e PUID=10002 -e GUID=10009 -p 8112:8112 -p 58846:58846 -v /path/to/config:/opt/deluge/config -v /path/to/downloads:/opt/deluge/data -v /path/to/final/location:/mnt/nas/Staging  automatr901/deluge:latest

⁠Known Issues

Configuration

When configured deluge will not write enabled plugins to the core.conf file, this must be done manually to have plugins start on boot e.g.

                    "enabled_plugins": [
                            "Label",
                            "Scheduler"
                            ],

Tag summary

Content type

Image

Digest

Size

52.3 MB

Last updated

almost 5 years ago

docker pull automatr901/deluge