-
Notifications
You must be signed in to change notification settings - Fork 2
Torrent Watcher
Preston edited this page Aug 6, 2019
·
1 revision
Cloud Torrent-rs can watch a directory for .torrent files and automatically add them.
Set the WatchDirectory field in cloud-torrent.yaml:
WatchDirectory: torrentsOr use an absolute path:
WatchDirectory: /home/user/watch- The watcher polls the configured directory for new
.torrentfiles - When a new file is found, it is added to the engine automatically
- The original
.torrentfile is moved to the trash directory (TrashDirectory) after being added
When running in Docker, mount the watch directory as a volume:
services:
cloud-torrent:
image: octopustakopi/cloud-torrent-rs:latest
volumes:
- ./downloads:/app/downloads
- ./watch:/app/torrents # maps to WatchDirectory
- ./cloud-torrent.yaml:/app/cloud-torrent.yamlThen drop .torrent files into ./watch/ on the host to trigger automatic downloads.