4pfsec Homelab
  • 4pfsec Home Lab by Nee
  • Operating System
    • Ubuntu 20.04.3 LTS (with gnome)
  • Networking
    • pfSense
    • Nginx Proxy Manager
    • Cloudflare
  • System Services / Software
    • Docker & Docker-Compose
    • CIFS / SMB Shares
  • Self-Hosted Services
    • Homer
    • Navidrome
    • Jellyfin
    • Deluge
    • File Browser
    • Pasty
    • NextCloud
  • Security
    • Nord
Powered by GitBook
On this page
  • About
  • Docker-Compose
  1. Self-Hosted Services

Deluge

BitTorrent Client

PreviousJellyfinNextFile Browser

Last updated 2 years ago

About

Instead of needing an endpoint client (Laptop, phone) to be turned on while a torrent downloads, I leverage Deluge's BitTorrent Client and torrent on my server which runs 24/7. This not only saves space on my endpoint device, it also means that I don't have to be online while the download is going! I can just access Deluge via the web UI, execute the download and come back when its done!

Docker-Compose

version: "2.1"
services:
  deluge:
    image: lscr.io/linuxserver/deluge
    container_name: deluge
    environment:
      - PUID=0
      - PGID=0
      - TZ=Asia/Singapore
      - DELUGE_LOGLEVEL=error #optional
    volumes:
      - /root/home_lab/deluge/config/:/config
      - /root/wd_nas/movies/Downloads/:/downloads
    ports:
      - 8112:8112
      - 6881:6881
      - 6881:6881/udp
    restart: unless-stopped