Docker MPD question about Music and Playlist directory (Music directory not found) #1315
Replies: 3 comments 1 reply
-
1) Music directory not foundThis is mostly a problem with permissions. The myMPD log should show details.
2) Updating cachesWithout logs I can not tell you what is going on. Attaching verbose logs is always a good idea ;) |
Beta Was this translation helpful? Give feedback.
-
I don't think it has to do with the compose file, six other containers are running. But I removed PUID/GUID and replaced with 'user 1000:1000'. I was thinking about what you said re:permisssions and realized I was starting mpd with systemd which runs it as mpd:mpd. So I removed that service and instead autostart with local bash_profile. Now mpd runs as 1000:1000. So that's out of the way. I also chown'ed var/lib/mpd to user 1000:1000. Now when I try to connect via the web interface 127.0.0.1:8082 (chosen because 8080 was already being used) it only shows 'Initializing myMPD'. It seems myMPD won't connect to the localhost mpd and I cannot figure out why. (I have no password set in mpd.conf) Docker logs:
|
Beta Was this translation helpful? Give feedback.
-
Not that this will help anyone else, but I got it working using local myMPD install. |
Beta Was this translation helpful? Give feedback.
-
Question about the music and playlist directory. myMPD is working and I can see and use my playlists and all my artists/albums list under Browse on myMPD. But myMPD keeps showing two things:
Music directory not found
Updating caches
When setting option under <...>MPD connection --> music directory, neither 'Autodetect", nor 'Specifiy' are accepted. Should I just set to 'None'? Or change Docker below settings?
My mpd .conf has the following directories:
music_directory "/mounts/musicplus/flac_music"
playlist_directory "~/.config/mpd/playlists"
My compose file (from https://jcorporation.github.io/myMPD/installation/docker):
- /var/lib/mpd/music:/var/lib/mpd/music:ro
- /var/lib/mpd/playlists:/var/lib/mpd/playlists:ro
/var/lib/mpd/music and /var/lib/mpd/music exist (owned by mpd:mpd) and are empty.
Beta Was this translation helpful? Give feedback.
All reactions