init commit

This commit is contained in:
mk
2026-02-15 00:47:12 -03:00
commit 0951f21e8e
21 changed files with 408 additions and 0 deletions

3
navidrome/README.md Normal file
View File

@@ -0,0 +1,3 @@
# Base navidrome with my configurations
You can edit `./data/navidrome` to change setting based on your preference, you can find the full configuration document [here](https://www.navidrome.org/docs/usage/configuration/options/)

View File

@@ -0,0 +1,6 @@
BaseUrl = 'yourdaminhere'
AutoImportPlaylists = false
DefaultTheme = 'AMusic'
DefaultDownloadableShare = true
EnableExternalServices = false
EnableSharing = true

View File

@@ -0,0 +1,13 @@
services:
navidrome:
image: deluan/navidrome:latest
user: 1000:1000 # should be owner of volumes
ports:
- "4533:4533"
restart: unless-stopped
#environment:
# Optional: put your config options customization here. Examples:
# ND_LOGLEVEL: debug
volumes:
- "./data:/data"
- "./music:/music:ro"