Move deluge onto walker

Stop torrent traffic being limitted by home broadband
This commit is contained in:
Jake Howard
2020-10-02 18:11:27 +01:00
parent 6cfaa3a03a
commit 191374b812
6 changed files with 24 additions and 28 deletions

View File

@ -0,0 +1,20 @@
version: "2.3"
services:
deluge:
image: linuxserver/deluge:latest
environment:
- PUID={{ docker_user.id }}
- PGID={{ docker_user.id }}
- TZ=Europe/London
volumes:
- "{{ app_data_dir }}/deluge:/config"
- /mnt/tank/downloads:/downloads
ports:
- "{{ wireguard.clients[ansible_fqdn].ip }}:8112:8112"
restart: unless-stopped
depends_on:
- tor-socks-proxy
tor-socks-proxy:
image: peterdavehello/tor-socks-proxy:latest
restart: unless-stopped