Navidrome

Modern Music Server and Streamer, compatible with Subsonic/Airsonic.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3"
services:
  navidrome:
    image: deluan/navidrome:latest
    user: 1000:1000 # should be owner of volumes
    ports:
      - "4533:4533"
    restart: unless-stopped
    environment:
      # Optional: put your config options customization here. Examples:
      ND_SCANSCHEDULE: 1h
      ND_LOGLEVEL: info  
      ND_SESSIONTIMEOUT: 24h
      ND_BASEURL: ""
    volumes:
      - "/path/to/data:/data"
      - "/path/to/your/music/folder:/music:ro"

Resources

Website: https://www.navidrome.org/

GitHub: https://github.com/navidrome/navidrome

Docker Hub: https://hub.docker.com/r/deluan/navidrome

Configuration: https://www.navidrome.org/docs/installation/docker/