commit 25895b75c5516c0dbd45d453b653283935fbc638 Author: Matt Speer Date: Sat Dec 20 14:08:22 2025 -0600 initial commit 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