Advertisement
txhermit

Docker-Compose: Navidrome

Feb 20th, 2025
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.45 KB | None | 0 0
  1. services:
  2.   navidrome:
  3.     image: deluan/navidrome:latest
  4.     user: 1000:1000 # should be owner of volumes
  5.     ports:
  6.      - "4533:4533"
  7.     restart: unless-stopped
  8.     environment:
  9.      # Optional: put your config options customization here. Examples:
  10.       ND_SCANSCHEDULE: 1h
  11.       ND_LOGLEVEL: info  
  12.       ND_SESSIONTIMEOUT: 24h
  13.       ND_BASEURL: ""
  14.     volumes:
  15.      - "/path/to/data:/data"
  16.       - "/path/to/your/music/folder:/music:ro"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement