You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 23, 2023. It is now read-only.
For me with both the downloads and media library on the same drive this caused huge performance issues when the apps postprocessed the files as it causes them to copy the files between the volumes instead of recognizing it could hard link them instead. Changing to have a single data volume and referencing the paths below them in the app config allowed near instant moves.
Most Docker images suggest paths like /tv and /downloads. This causes slow moves and doesn't allow hard links because they are considered two different file systems inside the container. Some also recommend paths for the download client container that are different from the Sonarr container, like /torrents.
The best solution is to use a single, common volume inside the containers, such as /data. Your TV shows would be in /data/TV, torrents in /data/downloads/torrents and/or usenet downloads in /data/downloads/usenet.
I recognize everyone might not have their download and media library on the same mount, but if you do this is a vastly faster way to configure it.