-
Is it normal that in it shows "/data" as the "HOST_DOWNLOAD_PATH" value but that in the other hand innefarious/docker-compose.base.yml Line 85 in 71b4728 That file nefarious/transmission-settings.json Line 2 in 71b4728 I tried to correct it my docker-compose.transmission-vpn.yml but I'm not sure as it's said to not modify docker-compose files. Also, is it related to my change that variable values in my transmission-settings.json file are not taken into account by Transmission? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @jpbaril, The reason the The You are correct in that you shouldn't need to edit any of the docker-compose.yml files as settings are meant to be configured through the Let me know if you think the instructions are missing anything to make it more clear. |
Beta Was this translation helpful? Give feedback.
-
If you're using transmission + vpn, then you'll only be using the If you want to use haugene's proxy, then you're right in that you'll want to edit the I hope that answers your questions. |
Beta Was this translation helpful? Give feedback.
Hi @jpbaril,
The reason the
HOST_DOWNLOAD_PATH
differs in those two files is because they are different docker images which expects the downloads to live in different places. The maindocker-compose.yml
file uses only transmission and thedocker-compose.transmission-vpn.yml
uses transmission+vpn. Each docker image is unique and expects different parameters, but you'll only be using one of them, depending if you want a VPN baked in or not.The
transmission-settings.json
file is for the regular transmission (without vpn) and that's why it's download path is/downloads
just as indocker-compose.yml
. Editing the file will have no effect on the vpn compose file (docker-compose.transmission-vpn…