goo/services/navidrome/navidrome.template

20 lines
492 B
Plaintext

services:
navidrome:
image: {{.Src}}
user: 1000:1000 # should be owner of volumes
ports:
- "{{.Ports.web}}:4533"
restart: always
environment:
# Optional: put your config options customization here. Examples:
ND_SCANSCHEDULE: 1h
ND_LOGLEVEL: info
ND_SESSIONTIMEOUT: 24h
ND_BASEURL: ""
volumes:
- "{{.Volumes.data}}:/data"
- "{{.Volumes.music}}:/music:ro"
{{- range .ExtraVolumes}}
- {{.}}
{{- end}}