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

21 lines
449 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:
- ./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