Files
2026-03-23 16:02:15 +01:00

33 lines
692 B
YAML
Executable File

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: {}