1
0

Add navidrome container
Deploy / Deploy (push) Successful in 23s

This commit is contained in:
2026-06-22 19:14:16 +01:00
parent 35ddac703d
commit fd8a377664
3 changed files with 96 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
services:
navidrome:
image: deluan/navidrome:0.62.0
restart: unless-stopped
depends_on:
init:
condition: service_completed_successfully
restart: true
user: 2012:2012 # navidrome:navidrome
networks:
- navidrome_network
ports:
- 4534:4533
environment:
ND_BASEURL: "https://navidrome.kappeh.org"
ND_ENABLEINSIGHTSCOLLECTOR: false
volumes:
- data:/data:rw
- /mnt/media_library_1/data/music:/music:ro
labels:
diun.enable: true
diun.watch_repo: true
diun.include_tags: latest
init:
image: busybox:1.38.0
user: root:root
command: /init.sh
restart: no
network_mode: none
volumes:
- ./init.sh:/init.sh:ro
- /etc/passwd:/etc/passwd:ro
- /etc/group:/etc/group:ro
- data:/data:rw
labels:
diun.enable: true
diun.watch_repo: true
diun.include_tags: latest
volumes:
data:
networks:
navidrome_network: