Deluge

Lightweight, cross-platform BitTorrent client.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3'
services:
  deluge:
    image: lscr.io/linuxserver/deluge:latest
    container_name: deluge
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
      - DELUGE_LOGLEVEL=error #optional
    volumes:
      - /path/to/deluge/config:/config
      - /path/to/downloads:/downloads
    ports:
      - 8112:8112
      - 6881:6881
      - 6881:6881/udp
      - 58846:58846 #optional
    restart: unless-stopped

Resources

Website: https://deluge-torrent.org/

Git Repository: https://git.deluge-torrent.org/

Docker Hub (LinuxServer.io): https://hub.docker.com/r/linuxserver/deluge

Docker Hub (binhex): https://hub.docker.com/r/binhex/arch-delugevpn

Configuration: See the Docker Hub pages