infrastructure/ansible/roles/intersect_docker/files/torrent/docker-compose.yml

21 lines
470 B
YAML
Raw Normal View History

2020-03-08 18:12:12 +00:00
version: "2.3"
2020-02-09 13:06:10 +00:00
services:
deluge:
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:
2020-08-22 11:20:38 +01:00
- /mnt/tank/app-data/deluge:/config
- /mnt/scratch/deluge:/downloads
2020-02-09 13:06:10 +00:00
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