Add Navidrome and SUB/WAVE AI radio station

Navidrome indexes the existing music library on nas_media for Subsonic
access. SUB/WAVE (byo-proxy variant, LAN-only) provides the Icecast
broadcast, Liquidsoap crossfade/ducking, and AI DJ controller, reusing
the existing Ollama instance over npm-network for the LLM and Piper
for TTS.
This commit is contained in:
2026-08-08 21:20:40 +00:00
parent d6c214d80d
commit fb728d4bfc
2 changed files with 163 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
services:
navidrome:
image: deluan/navidrome:latest
container_name: navidrome
restart: unless-stopped
environment:
- ND_MUSICFOLDER=/media/music
- 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