Update comfigs for best practices

This commit is contained in:
2026-04-08 16:06:17 -07:00
parent f7d08333f1
commit 33df798c30
18 changed files with 411 additions and 115 deletions

32
navidrome/compose.yml Normal file
View File

@@ -0,0 +1,32 @@
services:
navidrome:
image: deluan/navidrome:0.61.0
container_name: navidrome
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
- ND_SCANSCHEDULE=1h
- ND_LOGLEVEL=info
- ND_MUSICFOLDER=/music
volumes:
- /mnt/storage/apps/navidrome/data:/data
- /mnt/storage/media/music:/music:ro
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:4533/ping"]
interval: 30s
timeout: 10s
retries: 3
start_period: 20s
deploy:
resources:
limits:
memory: 1G
cpus: '1.0'
networks:
- network
networks:
network:
name: proxy
external: true