binhex-deluge

binhex-deluge

Docker app from Binhex's Repository

Overview

Deluge is a full-featured BitTorrent client for Linux, OS X, Unix and Windows. It uses libtorrent in its backend and features multiple user-interfaces including: GTK+, web and console. It has been designed using the client server model with a daemon process that handles all the bittorrent activity. The Deluge daemon is able to run on headless machines with the user-interfaces being able to connect remotely from any platform.

Application

Deluge

Description

Deluge is a full-featured ​BitTorrent client for Linux, OS X, Unix and Windows. It uses ​libtorrent in its backend and features multiple user-interfaces including: GTK+, web and console. It has been designed using the client server model with a daemon process that handles all the bittorrent activity. The Deluge daemon is able to run on headless machines with the user-interfaces being able to connect remotely from any platform.

Build notes

Latest stable Deluge release from Arch Linux repo.

Usage

docker run -d \
    -p 8112:8112 \
    -p 58846:58846 \
    -p 58946:58946 \
    --name=<container name> \
    -v <path for data files>:/data \
    -v <path for config files>:/config \
    -v /etc/localtime:/etc/localtime:ro \
    -e GLUETUN_INCOMING_PORT=<yes|no> \
    -e WEBUI_PORT=<port> \
    -e DELUGE_DAEMON_LOG_LEVEL=<critical|error|warning|info|debug> \
    -e DELUGE_WEB_LOG_LEVEL=<critical|error|warning|info|debug> \
    -e HEALTHCHECK_COMMAND=<command> \
    -e HEALTHCHECK_ACTION=<action> \
    -e HEALTHCHECK_HOSTNAME=<hostname> \
    -e UMASK=<umask for created files> \
    -e PUID=<uid for user> \
    -e PGID=<gid for user> \
    binhex/arch-deluge

Please replace all user variables in the above command defined by <> with the correct values.

Access application

http://<host ip>:8112

Example

docker run -d \
    -p 8112:8112 \
    -p 58846:58846 \
    -p 58946:58946 \
    --name=deluge \
    -v /apps/docker/deluge/data:/data \
    -v /apps/docker/deluge/config:/config \
    -v /etc/localtime:/etc/localtime:ro \
    -e GLUETUN_INCOMING_PORT=no \
    -e WEBUI_PORT=8112 \
    -e DELUGE_DAEMON_LOG_LEVEL=info \
    -e DELUGE_WEB_LOG_LEVEL=info \
    -e UMASK=000 \
    -e PUID=0 \
    -e PGID=0 \
    binhex/arch-deluge

Notes

User ID (PUID) and Group ID (PGID) can be found by issuing the following command for the user you want to run the container as:-

id <username>

Default password for the webui is "deluge"


If you appreciate my work, then please consider buying me a beer :D

PayPal donation

Documentation | Support forum

Install binhex-deluge on Unraid in a few clicks.

Find binhex-deluge in Community Apps on your Unraid server, review the template, and click Install. Unraid handles the Docker app or plugin setup from the published template.

Open the Apps tab on your Unraid server Search Community Apps for binhex-deluge Review the template variables and paths Click Install

Categories

Download Statistics

15,775,334
Total Downloads
6,854
This Month
6,144
Avg / Month

Total Downloads Over Time

Loading chart...

Related apps

Explore more like this

Explore all

Details

Repository
ghcr.io/binhex/arch-deluge
Last Updated2026-01-12

Runtime arguments

Web UI
http://[IP]:[PORT:8112]
Network
bridge
Shell
bash
Privileged
false
Extra Params
--restart=unless-stopped

Template configuration

Port: Web InterfacePorttcp

This is the Web UI port for for the application.

Target
8112
Default
8112
Port: Deluge daemonPorttcp

This is the port used by the Deluge daemon.

Target
58846
Default
58846
Port: Incoming port (TCP)Porttcp

This port can be used as an TCP incoming port.

Target
58946
Default
58946
Port: Incoming port (UDP)Portudp

This port can be used as an UDP incoming port.

Target
58946
Default
58946
Path: /configPathrw

This is the container path to your configuration files, e.g. databases, configuration files, logs etc.

Target
/config
Default
/mnt/user/appdata/deluge
Path: /dataPathrw

This is the container path to your downloaded files or user created content.

Target
/data
Variable: DELUGE_DAEMON_LOG_LEVELVariable

Specify the level of logging for the Deluge daemon, valid levels are: info, warning, error, none, debug, trace, garbage.

Target
DELUGE_DAEMON_LOG_LEVEL
Default
info
Variable: DELUGE_WEB_LOG_LEVELVariable

Specify the level of logging for the Deluge daemon, valid levels are: info, warning, error, none, debug, trace, garbage.

Target
DELUGE_WEB_LOG_LEVEL
Default
info
Variable: GLUETUN_INCOMING_PORTVariable

Specify whether to attempt to identify and configure the applications listening port when connected to the gluetun network.

Target
GLUETUN_INCOMING_PORT
Default
no|yes
Variable: GLUETUN_CONTROL_SERVER_PORTVariable

Specify the port for the gluetun HTTP Control Server.

Target
GLUETUN_CONTROL_SERVER_PORT
Default
8000
Variable: GLUETUN_CONTROL_SERVER_USERNAMEVariable

Specify the username for the gluetun HTTP Control Server

Target
GLUETUN_CONTROL_SERVER_USERNAME
Default
controlserver
Variable: GLUETUN_CONTROL_SERVER_PASSWORDVariable

Specify the password for the gluetun HTTP Control Server

Target
GLUETUN_CONTROL_SERVER_PASSWORD
Default
controlserver
Variable: WEBUI_PORTVariable

Specify the port the application will listen on - IMPORTANT: If you change this value then you will also need to delete and re-create the port mapping to match.

Target
WEBUI_PORT
Default
8112
Variable: DEBUGVariable

Specify whether you want to enable debug logging, useful when diagnosing gluetune related issues.

Target
DEBUG
Default
no|yes
Variable: ENABLE_HEALTHCHECKVariable

Enable or disable healthchecks.

Target
ENABLE_HEALTHCHECK
Default
yes|no
Variable: HEALTHCHECK_COMMANDVariable

The command or script to execute, if not specified then the script healthcheck.sh will be used (process, dns and https checking).

Target
HEALTHCHECK_COMMAND
Variable: HEALTHCHECK_ACTIONVariable

The action to execute if the healthcheck command returns a non zero exit code, if not specified the action will be 'exit 1', if you want the container to exit on failure then set the action to 'kill 1'.

Target
HEALTHCHECK_ACTION
Variable: HEALTHCHECK_HOSTNAMEVariable

The hostname used when performing HTTPS and DNS healthchecking.

Target
HEALTHCHECK_HOSTNAME
Default
google.com
Variable: PUIDVariable

User ID for the running container

Target
PUID
Default
99
Variable: PGIDVariable

Group ID for the running container

Target
PGID
Default
100
Variable: UMASKVariable

UMASK for the running container

Target
UMASK
Default
000