> For the complete documentation index, see [llms.txt](https://homelab.4pfsec.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://homelab.4pfsec.com/self-hosted-services/navidrome.md).

# Navidrome

## 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.

![](/files/E84YpBcwQtU12QAhZFSK)

## 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"
```
