How do you run qbitmanage via qB's pre-/post-run external program commands for qBittorrent in docker? #614
-
I know how to exec into the container to install requirements but not how to do it so you don't lose the qbitmanage install whenever the container is recreated. Would you include the requirements install as a custom entrypoint? Or is there a way of putting like a portable install in a directory the container accesses so it's always available? I'm not that experienced with python obviously. Or do you run a parallel qbitmanage container and allow qB to trigger the other container somehow? Plz share your configuration |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
I was struggling with this and ended up building a child container that included a webhook: https://github.com/davidgibbons/qbit_webhook This runs in its own container and then qBitTorrent calls a small curl script to trigger it on torrent start. |
Beta Was this translation helpful? Give feedback.
I was struggling with this and ended up building a child container that included a webhook: https://github.com/davidgibbons/qbit_webhook
This runs in its own container and then qBitTorrent calls a small curl script to trigger it on torrent start.