ND_AUTOIMPORTPLAYLISTS defaults to true and was importing every .m3u it found scanning the music folder (one per album from ripping software) as a playlist -- 2059 of them, 1605 completely empty, hundreds duplicated. Cleaned up the existing junk via the Subsonic API; this stops it from coming back on the next scan.
27 lines
512 B
YAML
27 lines
512 B
YAML
services:
|
|
navidrome:
|
|
image: deluan/navidrome:latest
|
|
container_name: navidrome
|
|
restart: unless-stopped
|
|
environment:
|
|
- ND_MUSICFOLDER=/media/music/albums
|
|
- ND_AUTOIMPORTPLAYLISTS=false
|
|
- ND_LOGLEVEL=info
|
|
- ND_PORT=4533
|
|
- TZ=America/New_York
|
|
ports:
|
|
- 4533:4533
|
|
volumes:
|
|
- /srv/navidrome/data:/data
|
|
- nas_media:/media:ro
|
|
networks:
|
|
- npm-network
|
|
|
|
volumes:
|
|
nas_media:
|
|
external: true
|
|
|
|
networks:
|
|
npm-network:
|
|
external: true
|