Scan
Beulu opened this issue · 13 comments
gonic version: latest
Hi ! Sorry if question was ask before :
Running gonic in docker with compose. Folders are well configured. Got folders (data, cache, audio) but scan doesn't work.
Got access to gonic UI at port 4747
I now have habit to configure folders with docker/compose. I can't find where is the problem.
can you be more specific? how doesn't the scan work? is there anything in the logs?
How can I have access to logs ?
I just click "scan" go the message in green banner and nothing.
after you clicked scan, did we relaod the gonic page to see the results?
you can view the docker logs with "docker compose logs"
I click on scan and even after a refresh : nothing
here the log :
Seems it doesn't detect folders/files but I'm 99% sure folders are corrects in the docker-compose (copy/paste and veryfied)
could you share your docker compose?
sure ! (code balise doesn't work well)
`# example docker-compose.yml
version: "2.4"
services:
gonic:
image: sentriz/gonic:latest
environment:
- TZ=Europe/Paris
ports:
- 4747:80
volumes:
- /HDD/System/Data:/data # gonic db etc
- /HDD/Musique:/musique:ro # your music
- /HDD/Podcasts:/podcasts:ro # your podcasts
- /HDD/Radios_internet:/internet_radios:ro # your internet radios
- /HDD/System/Playlists:/playlists # your playlists
- /HDD/Cache:/cache # transcode / covers / etc cache dir
# set the following two sections if you've enabled jukebox
group_add:
- audio
devices:
- /dev/snd:/dev/snd`
/HDD is for the music hard disk drive on my server. Is well linked in my docker compose (copy/paste from HDD list)
Folders are created too.
you have mounted your music into the container as /musique
, gonic is expecting /music
. you need to either change the mount to /music
, or else set GONIC_MUSIC_PATH=/musique
It works ! ^^
thank you !
Now I have to found how navidrome can use Gonic database ^^
Gonic doenst detect my podcasts files in my podcasts folder. podcasts is well asked in docker compose
- /HDD/Podcasts:/podcasts:ro # your podcasts (no modification)
gonic will not detect internet radio stations or podcasts from your filesystem unfortunately
this is inherent to the subsonic protocol, where internet radio stations and podcasts have associated users, ratings, favourites, etc - note of which can be deduced from the filesystem. you will need to use a client like airsonic-refix or dsub or whatever else your using to add them to gonic
It's not important, Audiobookshelf can be used for podcasts. ^^
Thanks for your time !