· QNAP Docker configuration problems Please tell me how to fill out the Docker volume mappings exactly for my configuration (see attached Directory structure)
Tell us about your home network
· Switches: DLink DMS-108, Cisco Meraki MS220-8P, Router: Sagemcom F3896LG QNAP NAS TVS-h474 3 Hard Disks in Raid 5 (DataVol1), 1 SSD (DataVol2)
To configure your Docker volume mappings, follow these steps:
/Roon (Database & App): Create a folder named roon inside the existing Container folder. This is where the Roon application and your database will be stored. Mapping: /share/Container/roon
/Music: Point this to the specific folder on your QNAP where your music is stored. It is not clear from the screenshot which folder contains your audio files, but as an example, if they are in the Multimedia folder, use this path. Mapping: /share/Multimedia
/RoonBackups: It is recommended to create a dedicated backup folder on your HDD (DataVol1). Create a folder there (for example, RoonBackups) and map the container to it. Mapping: /share/RoonBackups
Here is the corresponding configuration for your docker-compose.yml file:
Our diagnostic servers don’t show any containerized servers since you last posted so we’re not confident this issue has been resolved. Please let us know how we can assist further after you’ve tried the steps @vadim shared in the post above.
Here is a guide you can use that additionally lays out the full process:
But I have 3 music folders on my NAS, now only DataVol1/Recordings02 is connected, How to proceed to connect DataVol1/Recordings01 and DataVol1/Recodings03 ?
Thanks …. but QNAP help clarifies how to move a folder to a different VOLUME not how to move them to a (new) folder. (They are way too big to try a copy).
mjw
(Father! Father! Resist not! Let us destroy the core! Set us free!)
8
I accidentally hit Enter before competing my post, so please revisit.
Do not create a new volume because all the files are on a single volume, and moving files is near instantaneous.
Still do not understand how to MOVE the 3 recordings folders to /Music (my very limited understanding is these recording folders are “shared folders” and cannot be moved).
mjw
(Father! Father! Resist not! Let us destroy the core! Set us free!)
10
Do you have command line access on the NAS?
If so, some straightforward Linux commands will do this for you. I not familiar with QNAP volumes, but I believe DataVol1 is mounted at /share/CACHEDEV1_DATA.
Therefore, you only need to execute the following.
cd /share/CACHEDEV1_DATA
mkdir Music
mv -t Music Recordings01 Recordings02 Recordings03