|
|
@@ -0,0 +1,25 @@
|
|
|
+Navidrome
|
|
|
+This server enable you to stream and cache music whilst on the move with subsonic/sunstreamer type clients
|
|
|
+
|
|
|
+
|
|
|
+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:
|
|
|
+ - "/home/pi/Docker/navidrome/data:/data"
|
|
|
+ - "/home/pi/Music:/music:ro"
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+docker compose up -d
|