From 107e37cb3e2585350a075f78b4346da6a7529d03 Mon Sep 17 00:00:00 2001 From: sstent Date: Mon, 27 Apr 2026 09:56:37 -0700 Subject: [PATCH] fix(entrypoint): simplify DB connection string --- entrypoint.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 768d99b..6c08f9c 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -92,8 +92,7 @@ start_app() { # 3. Start Navidrome with ND_DBPATH environment variable. # This is the most authoritative way to set the DB location. - # We include the SQLite connection string for WAL mode and performance. - export ND_DBPATH="/litefs/navidrome.db?cache=shared&_busy_timeout=15000&_journal_mode=WAL&_foreign_keys=on" + export ND_DBPATH="/litefs/navidrome.db?_busy_timeout=15000" /app/navidrome & NAVIDROME_PID=$!