infrastructure/ansible/roles/intersect_docker/files/torrent/docker-compose.yml
Jake Howard 24d11deeae
Update ansible-lint
Required a lot of renaming :(
2020-09-26 17:53:47 +01:00

21 lines
470 B
YAML

version: "2.3"
services:
deluge:
image: linuxserver/deluge:latest
environment:
- PUID={{ docker_user.id }}
- PGID={{ docker_user.id }}
- TZ=Europe/London
volumes:
- /mnt/tank/app-data/deluge:/config
- /mnt/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