Initial Navidrome deployment configuration

This commit is contained in:
2026-01-26 20:54:45 -05:00
commit 305f92cff1
4 changed files with 60 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
volumes:
data:
services:
navidrome:
image: ${IMAGE:-docker.io/deluan/navidrome}:${VERSION:?}
container_name: ${NAME:-navidrome}
ports:
- ${ENDPOINT:-127.0.0.1:4533}:${PORT:-4533}
environment:
ND_PORT: ${PORT:-4533}
ND_LOGLEVEL: ${LOGLEVEL:-info}
ND_BASEURL: ${BASEURL:?}
ND_LASTFM_ENABLED: ${LASTFM_ENABLED:-true}
ND_LASTFM_APIKEY: ${LASTFM_APIKEY:?}
ND_LASTFM_SECRET: ${LASTFM_SECRET:?}
volumes:
- data:/data
- ${MUSIC:?}:/music:ro,Z