From 25895b75c5516c0dbd45d453b653283935fbc638 Mon Sep 17 00:00:00 2001 From: Matt Speer Date: Sat, 20 Dec 2025 14:08:22 -0600 Subject: [PATCH] initial commit --- README.md | 5 +++++ docker-compose.yaml | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 README.md create mode 100644 docker-compose.yaml diff --git a/README.md b/README.md new file mode 100644 index 0000000..383949a --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Readarr + +## Description + +Readarr is an ebook management tool designed to automate the process of tracking, downloading, and organizing ebooks. It helps users monitor their favorite authors, manage book collections, and integrate with download clients for seamless ebook acquisition. Readarr supports various formats and metadata sources, ensuring a well-organized digital library. \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..0619a97 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,17 @@ +--- +version: "2.1" +services: + readarr: + image: lscr.io/linuxserver/readarr:develop + container_name: readarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Chicago + volumes: + - /home/mattspeer/readarr:/config + - /library/books:/books #optional + - /downloads/complete/books:/downloads/books #optional + ports: + - 8787:8787 + restart: unless-stopped \ No newline at end of file