-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Ability to change host download file from settings #265
Comments
I've thought a lot about this and couldn't come up with a clean solution, mainly due to how the docker environment works. When the user initially creates all the services via docker-compose, transmission + celery + nefarious all need to know the download path. If the user changes that setting in the nefarious UI, it would need to communicate to the other services as well. This may be possible for transmission via it's API set_session , What I don't like about that solution is that once the user changed the download path, it would be out of sync with what they have in the I'm open to completely changing how it all works if we can come up with a clean solution. |
On my side I see the |
It just occurred to me that if you change the Here's the volume/mount logic in
I like where you're going with this but I am at a loss of how to handle this with docker and pre-defined mount points. |
Yes, I can confirm that! Quick question, most of your users clone the project and launch it themselves or do you have an install setup that does everything automatically? Also, who is the target audience (people with technical knowledge or even amateurs)? |
The current process is that new users must clone the repository, which has the docker related files in there, and then they just have to run the I wanted the target audience to be the general public, but as it stands it's definitely more for power users who are comfortable on the linux command line. Docker offers a lot of convenience but it has some drawbacks. I've tried to consider other alternatives but couldn't think of anything that solved all the pain points. |
I wanted to change the "host download path" setting, but I had to recreate the image or restart after modifying the
.env
file. It should be possible to select the download folder from the settings.The text was updated successfully, but these errors were encountered: