Title logo
linuxserver/deluge.

A Deluge container, brought to you by LinuxServer.io.

326,465,586 582 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/deluge
Build Time 22 Apr 2024 15:41:53
Category File Management
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 2.1.1 22 Apr 2024 at 15:41:52

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  deluge:
    image: linuxserver/deluge:2.1.1
    container_name: deluge
    network_mode: host
    restart: unless-stopped
    environment:
      - UMASK_SET=022 # for umask setting of deluge, default if left unset is 022
      - TZ=Europe/London # Specify a timezone to use
      - PUID=1000 # for UserID
      - PGID=1000 # for GroupID
      - DELUGE_LOGLEVEL=error # set the loglevel output when running Deluge, default is info for deluged and warning for delgued-web
    volumes:
      - /host/path/to/downloads:/downloads # torrent download directory
      - /host/path/to/config:/config # deluge configs

CLI

docker create \
  --name=deluge \
  --net=host \
  -e UMASK_SET=022 `# for umask setting of deluge, default if left unset is 022` \
  -e TZ=Europe/London `# Specify a timezone to use` \
  -e PUID=1000 `# for UserID` \
  -e PGID=1000 `# for GroupID` \
  -e DELUGE_LOGLEVEL=error `# set the loglevel output when running Deluge, default is info for deluged and warning for delgued-web` \
  -v /host/path/to/downloads:/downloads `# torrent download directory` \
  -v /host/path/to/config:/config `# deluge configs` \
  --restart unless-stopped \
  linuxserver/deluge:2.1.1