Navidrome
Music Streaming Server
About
I've been using Navidrome ever since I started streaming music files and have been with it ever since. It's API is compatible with any subsonic player. So there are pretty amazing apps for it on both IOS and Android! No problem there. Awesome music streaming server.

Docker-Compose
version: "3"
services:
navidrome:
image: deluan/navidrome:latest
restart: unless-stopped
ports:
- "4533:4533"
environment:
# Optional: put your config options customization here. Examples:
ND_SCANSCHEDULE: 1h
ND_LOGLEVEL: info
ND_BASEURL: ""
volumes:
- "./data:/data"
- "/location/of/music:/music:ro"
Last updated