-
Notifications
You must be signed in to change notification settings - Fork 4
How to Setup QBitorrent Addon (DOCKER ONLY)
Zach Stultz edited this page Jan 16, 2024
·
3 revisions
2. Set "Assign Category" in your RSS feed to the newly-created category and set the "Add Paused" option to "Always".
3. Set uncheck_non_qbit_upgrades_toggle = True
at the top of settings.py
4. Fill out your connection details at the bottom of settings.py:
(OPTIONAL) 5. Set delete_unacceptable_torrent_titles_in_qbit = True
if you want it to purge torrents whose titles contain an unacceptable keyword.
REMINDER: Don't forget to override settings.py in your docker config, otherwise it won't use your custom settings.py file!
- /path/to/custom/settings.py:/app/settings.py:ro
-v /path/to/custom/settings.py:/app/settings.py:ro \
REMINDER: Don't forget to redirect the "logs" location in your docker config, otherwise the logs won't be kept outside the container!
- /path/to/logs/storage/location:/app/logs
-v /path/to/logs/storage/location:/app/logs \