2020-03-08 18:12:12 +00:00
|
|
|
version: "2.3"
|
2020-02-09 13:06:10 +00:00
|
|
|
services:
|
|
|
|
deluge:
|
2020-06-13 19:38:42 +01:00
|
|
|
image: linuxserver/deluge:latest
|
2020-02-09 13:06:10 +00:00
|
|
|
environment:
|
|
|
|
- PUID={{ docker_user.id }}
|
|
|
|
- PGID={{ docker_user.id }}
|
|
|
|
- TZ=Europe/London
|
|
|
|
volumes:
|
|
|
|
- ./deluge:/config
|
|
|
|
- /scratch/deluge:/downloads
|
|
|
|
ports:
|
|
|
|
- 8112:8112
|
|
|
|
restart: unless-stopped
|
2020-06-24 18:35:20 +01:00
|
|
|
depends_on:
|
|
|
|
- tor-socks-proxy
|
2020-02-09 13:06:10 +00:00
|
|
|
|
|
|
|
tor-socks-proxy:
|
|
|
|
image: peterdavehello/tor-socks-proxy:latest
|
|
|
|
restart: unless-stopped
|