Navidrome自架的開源音樂伺服器
Navidrome
Welcome to Navidrome! Learn More Download Your Personal Streaming Service
Navidrome allows you to enjoy your music collection from anywhere, by making it available through a modern Web UI and through a wide range of third-party compatible mobile apps, for both iOS and Android devices.

Navidrome docker-compose.yml
version: '3.8'
services:
navidrome:
image: deluan/navidrome:latest
user: "1000:1000" # 確保與宿主機的使用者ID匹配
ports:
- "4533:4533"
restart: unless-stopped
environment:
ND_LOGLEVEL: info # 調整日誌等級
ND_SCANSCHEDULE: 1h # 每小時掃描一次音樂庫
# ND_BASEURL: "/navidrome" # 若使用 Nginx 反向代理,可設定這個變數
volumes:
- "./data:/data"
- "./music:/music:ro"

