linuxserver-archive / docker-libresonic

THIS IMAGE IS DEPRECATED. PLEASE USE AIRSONIC `linuxserver/airsonic`
10 stars 4 forks source link

Libresonic doesn't find new files. #23

Closed jcgruenhage closed 6 years ago

jcgruenhage commented 6 years ago

When I copy new music into /mnt/hdd02/music/music, libresonic does find the folders, but not the files inside them. The permissions are set to 644 on the files and 755 on the folders, so libresonic should be able to read them. Deleting the container and the content of /config and then running docker-compose up -d again fixes this, but this deletes any configuration, so this is merely a workaround, not a solution.

Host OS: Fedora Server 27

The relevant part of my docker-compose.yml:

version: '2'
services:
        libresonic:
                image: docker.io/linuxserver/libresonic
                container_name: libresonic
                volumes:
                        - ./libresonic/config:/config:z
                        - /mnt/hdd02/music/music:/music:z
                        - /mnt/hdd02/music/playlists:/playlists:z
                        - /mnt/hdd02/music/podcasts:/podcasts:z
                        - /mnt/hdd02/media:/media:z
                environment:
                        - PGID=192
                        - PUID=192
                        - TZ=Europe/Berlin

Edit: I sadly forgot to save the log, so that's gone. Will append it the next time this error occurs.

j0nnymoe commented 6 years ago

Please could you try this with our airsonic container and see if you get the same issues? If you do, please open up a ticket on that repo as we will eventually be dropping this container. Thanks

jcgruenhage commented 6 years ago

Thanks for pointing me to airsonic, didn't know it existed. I'll switch to that now.