From c1c5c08cbbc82868bbb8afee3334044e353d848c Mon Sep 17 00:00:00 2001 From: Timothy Kim Date: Sat, 29 Aug 2026 19:34:11 -0400 Subject: [PATCH] adds navidrome --- docker/navidrome/compose.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docker/navidrome/compose.yaml diff --git a/docker/navidrome/compose.yaml b/docker/navidrome/compose.yaml new file mode 100644 index 0000000..a06132b --- /dev/null +++ b/docker/navidrome/compose.yaml @@ -0,0 +1,23 @@ +services: + navidrome: + image: deluan/navidrome:latest + container_name: navidrome + restart: unless-stopped + # timothykim:sambagroup — needs group-read on the music files. Without an + # explicit user the image runs as root. + user: "1000:1001" + networks: + - shared + volumes: + - ./data:/data + - /opt/argento/smb/media/Music:/music:ro + environment: + TZ: America/New_York + # Navidrome watches the filesystem, but a periodic sweep catches anything + # inotify missed. Default is 0 (watcher only). + ND_SCANNER_SCHEDULE: "@every 24h" + +networks: + shared: + external: true +