-
-
Notifications
You must be signed in to change notification settings - Fork 60
Description
Hello here ! 👋
I'm very interested by this project ! But I have troubles to make the Transmission feature works.
Even if I have correctly set my params inside config.yaml, every time I ask the bot to change the transmission speed I get this error message in the console sh: transmission-remote: not found, (I already have the debug-log option activated in my config file).
I understood by reading this bit of code that Addarr uses the transmission-remote CLI and composes the corresponding command with os.system. But does Addarr uses the CLI inside of Addar's own docker container, or execute the command on the host ?
For my case, Transmission is itself located inside a docker container, so transmission-remote is not in the PATH of my host system. But that command works correctly if I execute the command inside my docker container like thisdocker container exec transmission transmission-remote localhost --auth transmission:mypassword --no-alt-speed.
If this feature is not supported when Transmission is itself in a docker container, maybe I can see if I can make a PR change this in the config file (and execute the command with docker exec itself).