adding untested changes and new dockers

This commit is contained in:
mk
2026-03-11 22:18:38 -03:00
parent fae6ea1abe
commit 52af4904da
34 changed files with 949 additions and 4 deletions

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,14 @@
services:
navidrome:
image: deluan/navidrome:latest
container_name: navidrome
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"