Files
docker-infrastructure/navidrome/docker-compose.yaml
T
poprhythm ebb2ad7b54 Scope Navidrome to music/albums (curated MusicBrainz-tagged set)
The nas_media share's music/ root also holds To Convert, shared, and
untagged folders that shouldn't feed the radio station's library.
2026-08-08 22:38:14 +00:00

26 lines
475 B
YAML

services:
navidrome:
image: deluan/navidrome:latest
container_name: navidrome
restart: unless-stopped
environment:
- ND_MUSICFOLDER=/media/music/albums
- 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