Skip to content
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

How to save downloaded files to another folder outside /downloads/ #77

Open
maisun opened this issue Dec 20, 2020 · 2 comments
Open

How to save downloaded files to another folder outside /downloads/ #77

maisun opened this issue Dec 20, 2020 · 2 comments

Comments

@maisun
Copy link

maisun commented Dec 20, 2020

Hi,
My video files are stored across different volumes, and I'd like to ask if it's possible to save downloaded files to another volume/folder? I tried symbolic link under /downloads/ folder but it doesn't seem to work for me.
Thank you in advance!

@lilws
Copy link

lilws commented Feb 7, 2021

You can mount different volume to your container, for example mount volume 3 to /downloads3. In rutorrent, you just need to manually type in /downloads3.

@ghost
Copy link

ghost commented Sep 5, 2021

    volumes:
      - ../downloads:/downloads
      - ./home:/home

notice the ../downloads: this puts it one folder up from where it wants to be.. then starts a new download folder there. so essentially you can .. out to the /

if rutorrent/ was at /home/$USER/rutorrent and downloads was at /rutorrent/downloads. docker-compose looks like

- ./downloads:/downloads
to have at /home/$USER/downloads

- ../downloads:/downloads
to have /downloads at / root
- ../../../../downloads:/downloads

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants