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
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
Any ideas?
-schmud.
mod note: you to a new thread for this //ambipro