infrastructure/ansible/roles/intersect-docker/files/torrent/docker-compose.yml
Jake Howard a22f555878
Unpin the versions of things I don't care about too much
If they update and break, it's not the end of the world, however unlikely it may be
2020-06-13 19:38:42 +01:00

25 lines
709 B
YAML

version: "2.3"
services:
deluge:
image: linuxserver/deluge:latest
container_name: deluge
environment:
- PUID={{ docker_user.id }}
- PGID={{ docker_user.id }}
- TZ=Europe/London
- DELUGE_LOGLEVEL=debug
volumes:
- ./deluge:/config
- /scratch/deluge:/downloads
ports:
- 8112:8112
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.deluge.rule=Host(`deluge.jakehoward.tech`)"
- "traefik.http.routers.deluge.tls.certresolver=le"
- "traefik.http.routers.deluge.middlewares=internal-only@file"
tor-socks-proxy:
image: peterdavehello/tor-socks-proxy:latest
restart: unless-stopped