From d9ccbfef5c9805045608ce77ae6ab886b26b25d4 Mon Sep 17 00:00:00 2001 From: kikootwo Date: Fri, 27 Feb 2026 09:41:48 -0500 Subject: [PATCH] Add optional bookdrop volume and .gitignore entry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Document an optional 'bookdrop' host folder in docker-compose.yml with a commented example volume mount for the Manual Import (Admin → audiobook → Manual Import) file picker, and add /bookdrop to .gitignore so local bookdrop mounts are not tracked. --- .gitignore | 3 ++- docker-compose.yml | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 58d87f8..8215cb9 100644 --- a/.gitignore +++ b/.gitignore @@ -53,4 +53,5 @@ next-env.d.ts /redis /pgdata /test-media -/test-data \ No newline at end of file +/test-data +/bookdrop \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index d3f8bd0..ebcdfa1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,6 +17,11 @@ services: - ./downloads:/downloads - ./media:/media + # Book Drop: optional folder for Manual Import (Admin → audiobook → Manual Import) + # Map any host folder here and it will appear as a browsable root in the file picker. + # Example: - /path/to/your/audiobooks:/bookdrop + # - ./bookdrop:/bookdrop + # PostgreSQL data persistence - ./pgdata:/var/lib/postgresql/data