Wireguard/Docker issues with Deluge 2.1.1

General support for problems installing or using Deluge
Post Reply
schmud
New User
New User
Posts: 1
Joined: Wed Oct 23, 2024 2:27 pm

Wireguard/Docker issues with Deluge 2.1.1

Post by schmud »

I'm sorry for bumping this ancient thread, but I am experiencing a very similar issue.

I am running within docker piping through a wireguard tunnel.

Code: Select all

# deluged -v
deluged 2.1.1
libtorrent: 2.0.10.0
Python: 3.12.7
OS: Linux
docker-compose.yml:

Code: Select all

services:
  wireguard:
    image: linuxserver/wireguard:latest
    cap_add:
      - NET_ADMIN
      - SYS_MODULE
    sysctls:
      - net.ipv6.conf.all.disable_ipv6=0
      - net.ipv4.conf.all.src_valid_mark=1
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Berlin
    ports:
      - 8112:8112
      - 6881:6881
      - 6881:6881/udp
      - 58846:58846 #optional
    volumes:
      - /abcd/wg0.conf:/config/wg_confs/wg0.conf
      - /lib/modules:/lib/modules
    restart: always

  deluge:
    image: lscr.io/linuxserver/deluge:latest
    container_name: deluge
    network_mode: "service:wireguard"
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Berlin
      - DELUGE_LOGLEVEL=info #optional
    volumes:
      - /abcd/conf:/config
      - /defg/downloads:/downloads
      - /defg/downloaded:/downloaded
    restart: unless-stopped
even the client is not connected / the connection is crashed, up- and downloading goes on as usual.

Any ideas?

-schmud.

mod note: you to a new thread for this //ambipro
shinger
Seeder
Seeder
Posts: 130
Joined: Sat Jun 05, 2010 1:02 pm

Re: Wireguard/Docker issues with Deluge 2.1.1

Post by shinger »

Hello schumd,

I am myself currently getting all the ins and outs of docker, so i cannot help you on that yet.

But did this already work before? Or did it never work before?
===============================================================
Server: Rock 5B 8 Cores (ARM), 16 GB RAM, 2 TB 970 Evo +
OS: Linux Ubuntu 24.04 LTS
Deluge: v2.1.2
Plugins: Blocklist, LabelPlus, ItConfig, MyScheduler, Stats, Notifications, YaRSS2
Post Reply