compose.yaml erneut hinzugefügt

This commit is contained in:
2026-03-23 16:02:15 +01:00
parent c7a890f917
commit c19bb06603
23 changed files with 906 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
services:
navidrome:
deploy:
resources:
limits:
memory: 512M
image: deluan/navidrome:latest
container_name: navidrome
restart: unless-stopped
labels:
- com.hanold.environment=production
environment:
- ND_CONFIGFILE=/config/navidrome.toml
ports:
- 9533:4533
volumes:
- /media/Musik:/music:ro
- ./data:/data
- ./navidrome.toml:/config/navidrome.toml
healthcheck:
test:
- CMD
- wget
- --no-verbose
- --tries=1
- --spider
- http://localhost:4533/ping
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks: {}