Jake Howard
fe5a5984c3
They're not needed for anything, and caused annoying weird issues when cycling containers
20 lines
449 B
YAML
20 lines
449 B
YAML
version: "2.3"
|
|
services:
|
|
deluge:
|
|
image: linuxserver/deluge:latest
|
|
environment:
|
|
- PUID={{ docker_user.id }}
|
|
- PGID={{ docker_user.id }}
|
|
- TZ=Europe/London
|
|
volumes:
|
|
- ./deluge:/config
|
|
- /scratch/deluge:/downloads
|
|
ports:
|
|
- 8112:8112
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- tor-socks-proxy
|
|
|
|
tor-socks-proxy:
|
|
image: peterdavehello/tor-socks-proxy:latest
|
|
restart: unless-stopped
|