self-hosted/simple-torrent/docker-compose.yml
Lorenzo Carbonell d5ddc10187 simple-torrent
2022-11-14 20:32:46 +01:00

18 lines
437 B
YAML

version: "3.7"
services:
simpletorrent:
image: boypt/cloud-torrent
container_name: simpletorrent
init: true
restart: unless-stopped
ports:
- "50012:50012"
- "50012:50012/udp"
environment:
AUTH: "username:password"
TITLE: "MySimpleTorrent"
volumes:
- ./downloads:/srv/downloads
- ./cloud-torrent.yaml:/etc/cloud-torrent.yaml
command: ["-c", "/etc/cloud-torrent.yaml"]