4pfsec Homelab
  • 4pfsec Home Lab by Nee
  • Operating System
    • Ubuntu 20.04.3 LTS (with gnome)
  • Networking
    • pfSense
    • Nginx Proxy Manager
    • Cloudflare
  • System Services / Software
    • Docker & Docker-Compose
    • CIFS / SMB Shares
  • Self-Hosted Services
    • Homer
    • Navidrome
    • Jellyfin
    • Deluge
    • File Browser
    • Pasty
    • NextCloud
  • Security
    • Nord
Powered by GitBook
On this page
  • About
  • Docker-Compose
  1. Self-Hosted Services

Navidrome

Music Streaming Server

PreviousHomerNextJellyfin

Last updated 2 years ago

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"