Best way to configure secondary 'completed' directories? #2856
Unanswered
philiprenich
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Read the documentation, it explains how to set user/folder permissions/set folders etc |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
First off, I love how simple this Docker setup was to get running. (The only issue I had was forgetting to turn off the non-Dockerised VPN my server was already running 🙈) Many thanks to the maintainers!
I have mounted
/data
to a/transmission
on my drive. As a sibling folders, unrelated to this Docker container, I have/files
and/stuff
. What's the best set up so that I can change the location of downloaded items from/data/completed
(or rather/transmission/completed
to/files
or/stuff
? I don't want to use/:/data
as my volume.Initially, I thought I would symlink the sibling folders, but that ran in to permission issues that I wasn't quite sure how to solve.
What I am currently doing is adding extra mount points to my volumes with
/files:/data/files
and/stuff:/data/stuff
That seems to work, though I'm a little concerned about the Docker container having full access to those (maybe that's unavoidable regardless of the setup?).Alongside this, files downloaded by Transmission are owned by root. Is there a way to set up the container so that the files are owned by my user on the host?
Beta Was this translation helpful? Give feedback.
All reactions