An audiobook and eBook collection manager.
424
stars
91
commits
C#
primary language
Sep 5, 2026
updated
Chaptarr is beta software. It is under active development. Bugs are likely; breaking changes less so, but still possible. Full disclosure: the last data loss event was in pre-alpha, with a tester group of roughly 30 people, about 12 months ago. Over the last 6 months we've grown past 11,000 active users with no reported data loss events. Still, follow good backup practice and avoid pointing it at a library you can't afford to lose.
Chaptarr is a Readarr fork built to accommodate audiobook and eBook libraries in one instance. It helps you organize and maintain a collection of books with rich metadata, including narrator and edition information that many general-purpose media managers struggle to track, or don't try to at all.
Chaptarr is an independent project. It is not affiliated with the Servarr team or the Readarr, Sonarr, Radarr, Lidarr, or Prowlarr projects.
Chaptarr is not compatible with Readarr's metadata sources. It uses its own modular pipeline that resolves entities across metadata providers and aggregates their data through automated refinement and consensus. As anyone in the book metadata space would expect, this is an ongoing effort to deliver the best, most accurate data possible. It is the core of our mission.
Docker is currently the only supported way to run Chaptarr. Chaptarr is developed and tested in Docker. Releases do not include native install packages; earlier zip attachments were incomplete build artifacts and have been withdrawn. Native support (starting with an experimental Windows build) is being worked on.
Pull the image:
docker pull chaptarr/chaptarr:latest
Run with Docker:
docker run -d \
--name chaptarr \
-p 8789:8789 \
-e PUID=1000 \
-e PGID=1000 \
-v /path/to/config:/config \
-v /path/to/audiobooks:/audiobooks \
-v /path/to/ebooks:/ebooks \
-v /path/to/downloads:/downloads \
--restart unless-stopped \
chaptarr/chaptarr:latest
Note: if PUID/PGID are not set, the image defaults to 99:100. If /path/to/config doesn't exist, Docker will create it as root:root. Create it first (or fix ownership) so it matches PUID/PGID. Avoid setting user: in Compose; it bypasses the entrypoint permission setup. On Unraid, media folders commonly use 99:100, so use PUID=99 and PGID=100 unless your share is owned differently. If multiple containers/users share the same media group, add -e UMASK=002. When testing permissions with docker exec, test as the app user, not root, for example: docker exec -u 99:100 chaptarr sh -c 'id; touch /audiobooks/.chaptarr-write-test && rm /audiobooks/.chaptarr-write-test'.
Or use Docker Compose:
wget https://raw.githubusercontent.com/chaptarr/chaptarr/develop/docker-compose.yml
# Edit paths in docker-compose.yml
docker compose up -d
Chaptarr supports using an external PostgreSQL database instead of the default SQLite chaptarr.db file. To enable it, set at least Chaptarr__Postgres__Host (and credentials).
Environment variables:
Chaptarr__Postgres__HostChaptarr__Postgres__Port (default: 5432)Chaptarr__Postgres__UserChaptarr__Postgres__PasswordChaptarr__Postgres__MainDb (default: chaptarr-main)Chaptarr__Postgres__LogDb (default: chaptarr-log)Chaptarr__Postgres__CacheDb (default: chaptarr-cache)Note: Chaptarr does not create PostgreSQL databases automatically; create the databases and grant the configured user access.
Building from source requires the .NET 10 SDK, Node.js, and Yarn. When running Chaptarr natively, install FFmpeg for your operating system and make sure both ffmpeg and ffprobe are available on the PATH used to start Chaptarr. Normal source builds do not bundle them automatically; the official Docker image already includes them.
Linux / macOS:
# Clone the repository
git clone https://github.com/chaptarr/chaptarr.git
cd chaptarr
# Build the backend
dotnet publish src/NzbDrone.Console/Chaptarr.Console.csproj -c Release -f net10.0 -o _output/publish
# Build the frontend
yarn install
yarn build
cp -r _output/UI _output/publish/UI
# Run Chaptarr
dotnet _output/publish/Chaptarr.dll
Windows (Command Prompt):
:: Clone the repository
git clone https://github.com/chaptarr/chaptarr.git
cd chaptarr
:: Build the backend
dotnet publish src/NzbDrone.Console/Chaptarr.Console.csproj -c Release -f net10.0 -o _output/publish
:: Build the frontend
yarn install
yarn build
xcopy _output\UI _output\publish\UI /E /I
:: Run Chaptarr
dotnet _output/publish/Chaptarr.Console.dll
Note: the assembly is named Chaptarr.dll on Linux/macOS and Chaptarr.Console.dll on Windows.
This process requires the "Docker Compose Manager" plugin.
cd /YOUR/APPDATA/PATH/HERE
For example:
cd /mnt/user/appdata/
mkdir Chaptarr
git clone https://github.com/chaptarr/chaptarr.git
/mnt/user/appdata/Chaptarr/, and click "OK"/mnt/user/YOURAUDIOBOOKSHERE:/audiobooksservices:
chaptarr:
build:
context: ./
dockerfile: Dockerfile.build
container_name: chaptarr
network_mode: bridge
environment:
- PUID=99
- PGID=100
- UMASK=002
- TZ=America/New_York # Change to your timezone
volumes:
- /mnt/user/appdata/Chaptarr:/config
- /mnt/user/data/media/books/audiobooks:/audiobooks
- /mnt/user/data/media/books/ebooks:/ebooks
- /mnt/user/data:/downloads
ports:
- 8789:8789
restart: unless-stopped
Paths are case sensitive.
Chaptarr should now be available at the IP address of your Unraid server on port 8789, for example http://192.168.xxx.xxx:8789/.
If you experience an error, check folder ownership and permissions, then run compose down and rebuild Chaptarr.
Chaptarr is a community project, and we welcome contributions! Please see CONTRIBUTING.md for guidelines.
Found a bug or have a feature request? Please open an issue on GitHub with:
Chaptarr is a fork of Readarr, so much of the operational model is familiar to *arr users. A few areas have been updated:
Traditional full backups contain the database and config file, including credentials, in an unencrypted zip. Do not share them or upload them to public cloud storage unless you have encrypted them separately.
Chaptarr uses api2.chaptarr.com for metadata and matching. Metadata requests may include provider IDs, search text, media type, selected audio/eBook tags, and the file name being matched. Full file paths, user identity, and indexer or download-client credentials are not sent. Update checks send version, OS, architecture, and runtime information.
Please see SECURITY.md for reporting security vulnerabilities.
Chaptarr is an independent fork of Readarr, an application from the Servarr project family. It builds on years of work by the Servarr team and the contributors to Readarr, Sonarr, Radarr, Lidarr, and Prowlarr, whose shared codebase makes this project possible. Thank you.
Audiobook conversion is powered by m4b-tool (by sandreas), which builds on FFmpeg and mp4v2. These are bundled in the official Chaptarr Docker image under their respective licenses.
See COPYRIGHT.md for full attribution and copyright details.
Chaptarr is an independent, community-run project. It is not affiliated with, endorsed by, or supported by the Servarr team or the Readarr, Sonarr, Radarr, Lidarr, or Prowlarr projects — please don't send Chaptarr support requests their way.
Chaptarr is provided under the GNU GPL v3 with no warranty (see the License section below).
Chaptarr is developed and maintained with the assistance of AI tools.
See the LICENSE file for the full license text and COPYRIGHT.md for attribution details.
Hacker News (1)
C#
80.3%
JavaScript
17.5%
CSS
1.2%
An audiobook and eBook collection manager.
424
stars
91
commits
C#
primary language
Sep 5, 2026
updated
Chaptarr is beta software. It is under active development. Bugs are likely; breaking changes less so, but still possible. Full disclosure: the last data loss event was in pre-alpha, with a tester group of roughly 30 people, about 12 months ago. Over the last 6 months we've grown past 11,000 active users with no reported data loss events. Still, follow good backup practice and avoid pointing it at a library you can't afford to lose.
Chaptarr is a Readarr fork built to accommodate audiobook and eBook libraries in one instance. It helps you organize and maintain a collection of books with rich metadata, including narrator and edition information that many general-purpose media managers struggle to track, or don't try to at all.
Chaptarr is an independent project. It is not affiliated with the Servarr team or the Readarr, Sonarr, Radarr, Lidarr, or Prowlarr projects.
Chaptarr is not compatible with Readarr's metadata sources. It uses its own modular pipeline that resolves entities across metadata providers and aggregates their data through automated refinement and consensus. As anyone in the book metadata space would expect, this is an ongoing effort to deliver the best, most accurate data possible. It is the core of our mission.
Docker is currently the only supported way to run Chaptarr. Chaptarr is developed and tested in Docker. Releases do not include native install packages; earlier zip attachments were incomplete build artifacts and have been withdrawn. Native support (starting with an experimental Windows build) is being worked on.
Pull the image:
docker pull chaptarr/chaptarr:latest
Run with Docker:
docker run -d \
--name chaptarr \
-p 8789:8789 \
-e PUID=1000 \
-e PGID=1000 \
-v /path/to/config:/config \
-v /path/to/audiobooks:/audiobooks \
-v /path/to/ebooks:/ebooks \
-v /path/to/downloads:/downloads \
--restart unless-stopped \
chaptarr/chaptarr:latest
Note: if PUID/PGID are not set, the image defaults to 99:100. If /path/to/config doesn't exist, Docker will create it as root:root. Create it first (or fix ownership) so it matches PUID/PGID. Avoid setting user: in Compose; it bypasses the entrypoint permission setup. On Unraid, media folders commonly use 99:100, so use PUID=99 and PGID=100 unless your share is owned differently. If multiple containers/users share the same media group, add -e UMASK=002. When testing permissions with docker exec, test as the app user, not root, for example: docker exec -u 99:100 chaptarr sh -c 'id; touch /audiobooks/.chaptarr-write-test && rm /audiobooks/.chaptarr-write-test'.
Or use Docker Compose:
wget https://raw.githubusercontent.com/chaptarr/chaptarr/develop/docker-compose.yml
# Edit paths in docker-compose.yml
docker compose up -d
Chaptarr supports using an external PostgreSQL database instead of the default SQLite chaptarr.db file. To enable it, set at least Chaptarr__Postgres__Host (and credentials).
Environment variables:
Chaptarr__Postgres__HostChaptarr__Postgres__Port (default: 5432)Chaptarr__Postgres__UserChaptarr__Postgres__PasswordChaptarr__Postgres__MainDb (default: chaptarr-main)Chaptarr__Postgres__LogDb (default: chaptarr-log)Chaptarr__Postgres__CacheDb (default: chaptarr-cache)Note: Chaptarr does not create PostgreSQL databases automatically; create the databases and grant the configured user access.
Building from source requires the .NET 10 SDK, Node.js, and Yarn. When running Chaptarr natively, install FFmpeg for your operating system and make sure both ffmpeg and ffprobe are available on the PATH used to start Chaptarr. Normal source builds do not bundle them automatically; the official Docker image already includes them.
Linux / macOS:
# Clone the repository
git clone https://github.com/chaptarr/chaptarr.git
cd chaptarr
# Build the backend
dotnet publish src/NzbDrone.Console/Chaptarr.Console.csproj -c Release -f net10.0 -o _output/publish
# Build the frontend
yarn install
yarn build
cp -r _output/UI _output/publish/UI
# Run Chaptarr
dotnet _output/publish/Chaptarr.dll
Windows (Command Prompt):
:: Clone the repository
git clone https://github.com/chaptarr/chaptarr.git
cd chaptarr
:: Build the backend
dotnet publish src/NzbDrone.Console/Chaptarr.Console.csproj -c Release -f net10.0 -o _output/publish
:: Build the frontend
yarn install
yarn build
xcopy _output\UI _output\publish\UI /E /I
:: Run Chaptarr
dotnet _output/publish/Chaptarr.Console.dll
Note: the assembly is named Chaptarr.dll on Linux/macOS and Chaptarr.Console.dll on Windows.
This process requires the "Docker Compose Manager" plugin.
cd /YOUR/APPDATA/PATH/HERE
For example:
cd /mnt/user/appdata/
mkdir Chaptarr
git clone https://github.com/chaptarr/chaptarr.git
/mnt/user/appdata/Chaptarr/, and click "OK"/mnt/user/YOURAUDIOBOOKSHERE:/audiobooksservices:
chaptarr:
build:
context: ./
dockerfile: Dockerfile.build
container_name: chaptarr
network_mode: bridge
environment:
- PUID=99
- PGID=100
- UMASK=002
- TZ=America/New_York # Change to your timezone
volumes:
- /mnt/user/appdata/Chaptarr:/config
- /mnt/user/data/media/books/audiobooks:/audiobooks
- /mnt/user/data/media/books/ebooks:/ebooks
- /mnt/user/data:/downloads
ports:
- 8789:8789
restart: unless-stopped
Paths are case sensitive.
Chaptarr should now be available at the IP address of your Unraid server on port 8789, for example http://192.168.xxx.xxx:8789/.
If you experience an error, check folder ownership and permissions, then run compose down and rebuild Chaptarr.
Chaptarr is a community project, and we welcome contributions! Please see CONTRIBUTING.md for guidelines.
Found a bug or have a feature request? Please open an issue on GitHub with:
Chaptarr is a fork of Readarr, so much of the operational model is familiar to *arr users. A few areas have been updated:
Traditional full backups contain the database and config file, including credentials, in an unencrypted zip. Do not share them or upload them to public cloud storage unless you have encrypted them separately.
Chaptarr uses api2.chaptarr.com for metadata and matching. Metadata requests may include provider IDs, search text, media type, selected audio/eBook tags, and the file name being matched. Full file paths, user identity, and indexer or download-client credentials are not sent. Update checks send version, OS, architecture, and runtime information.
Please see SECURITY.md for reporting security vulnerabilities.
Chaptarr is an independent fork of Readarr, an application from the Servarr project family. It builds on years of work by the Servarr team and the contributors to Readarr, Sonarr, Radarr, Lidarr, and Prowlarr, whose shared codebase makes this project possible. Thank you.
Audiobook conversion is powered by m4b-tool (by sandreas), which builds on FFmpeg and mp4v2. These are bundled in the official Chaptarr Docker image under their respective licenses.
See COPYRIGHT.md for full attribution and copyright details.
Chaptarr is an independent, community-run project. It is not affiliated with, endorsed by, or supported by the Servarr team or the Readarr, Sonarr, Radarr, Lidarr, or Prowlarr projects — please don't send Chaptarr support requests their way.
Chaptarr is provided under the GNU GPL v3 with no warranty (see the License section below).
Chaptarr is developed and maintained with the assistance of AI tools.
See the LICENSE file for the full license text and COPYRIGHT.md for attribution details.
Hacker News (1)
C#
80.3%
JavaScript
17.5%
CSS
1.2%