Browse Source

Merge pull request #142 from meienberger/app/readarr

App/readarr
Nicolas Meienberger 3 years ago
parent
commit
6ac78df7c2

+ 5 - 3
.gitignore

@@ -1,10 +1,9 @@
 .pnpm-debug.log
 .pnpm-debug.log
 .env*
 .env*
-data/
 github.secrets
 github.secrets
 node_modules/
 node_modules/
 app-data/*
 app-data/*
-data/
+data/postgres
 traefik/ssl/*
 traefik/ssl/*
 !traefik/ssl/.gitkeep
 !traefik/ssl/.gitkeep
 !app-data/.gitkeep
 !app-data/.gitkeep
@@ -16,10 +15,13 @@ state/*
 
 
 media/data/movies/*
 media/data/movies/*
 media/data/tv/*
 media/data/tv/*
-media/data/books/*
+media/data/books/spoken/*
+media/data/books/ebooks/*
 !media/data/movies/.gitkeep
 !media/data/movies/.gitkeep
 !media/data/tv/.gitkeep
 !media/data/tv/.gitkeep
 !media/data/books/metadata.db
 !media/data/books/metadata.db
+!media/data/books/ebooks/.gitkeep
+!media/data/books/spoken/.gitkeep
 
 
 media/torrents/complete/*
 media/torrents/complete/*
 !media/torrents/complete/.gitkeep
 !media/torrents/complete/.gitkeep

+ 1 - 0
README.md

@@ -45,6 +45,7 @@ Check our demo instance : **95.179.210.152** / username: **user@runtipi.com** /
 - [Plex](https://github.com/plexinc/pms-docker) - Stream Movies & TV Shows
 - [Plex](https://github.com/plexinc/pms-docker) - Stream Movies & TV Shows
 - [Prowlarr](https://github.com/Prowlarr/Prowlarr/) - A torrent/usenet indexer manager/proxy
 - [Prowlarr](https://github.com/Prowlarr/Prowlarr/) - A torrent/usenet indexer manager/proxy
 - [Radarr](https://github.com/Radarr/Radarr) - Movie collection manager for Usenet and BitTorrent users
 - [Radarr](https://github.com/Radarr/Radarr) - Movie collection manager for Usenet and BitTorrent users
+- [Readarr](https://github.com/Readarr/Readarr) - Book Manager and Automation (Sonarr for Ebooks)
 - [Resilio Sync](https://github.com/bt-sync) - Fast, reliable, and simple file sync and share solution
 - [Resilio Sync](https://github.com/bt-sync) - Fast, reliable, and simple file sync and share solution
 - [Sonarr](https://github.com/Sonarr/Sonarr) - TV show manager for Usenet and BitTorrent
 - [Sonarr](https://github.com/Sonarr/Sonarr) - TV show manager for Usenet and BitTorrent
 - [Syncthing](https://github.com/syncthing/syncthing) - Continuous File Synchronization
 - [Syncthing](https://github.com/syncthing/syncthing) - Continuous File Synchronization

+ 13 - 0
apps/readarr/config.json

@@ -0,0 +1,13 @@
+{
+  "name": "Readarr",
+  "available": true,
+  "port": 8112,
+  "id": "readarr",
+  "categories": ["books", "media"],
+  "description": "",
+  "short_desc": "Book Manager and Automation (Sonarr for Ebooks)",
+  "author": "readarr.com",
+  "source": "https://github.com/Readarr/Readarr",
+  "image": "/logos/apps/readarr.jpg",
+  "form_fields": []
+}

+ 20 - 0
apps/readarr/docker-compose.yml

@@ -0,0 +1,20 @@
+version: "3.9"
+services:
+  readarr:
+    image: lscr.io/linuxserver/readarr:develop
+    container_name: readarr
+    environment:
+      - PUID=1000
+      - PGID=1000
+      - TZ=${TZ}
+    dns:
+      - ${DNS_IP}
+    volumes:
+      - /etc/localtime:/etc/localtime:ro
+      - ${APP_DATA_DIR}/data:/config
+      - ${ROOT_FOLDER_HOST}/media:/media
+    ports:
+      - ${APP_PORT}:8787
+    restart: unless-stopped
+    networks:
+      - tipi_main_network

+ 22 - 0
apps/readarr/metadata/description.md

@@ -0,0 +1,22 @@
+Readarr is an ebook and audiobook collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new books from your favorite authors and will grab, sort, and rename them.
+Note that only one type of a given book is supported. If you want both an audiobook and ebook of a given book you will need multiple instances.
+
+## Major Features Include
+
+* Can watch for better quality of the ebooks and audiobooks you have and do an automatic upgrade. *e.g. from PDF to AZW3*
+* Support for major platforms: Windows, Linux, macOS, Raspberry Pi, etc.
+* Automatically detects new books
+* Can scan your existing library and download any missing books
+* Automatic failed download handling will try another release if one fails
+* Manual search so you can pick any release or to see why a release was not downloaded automatically
+* Advanced customization for profiles, such that Readarr will always download the copy you want
+* Fully configurable book renaming
+* SABnzbd, NZBGet, QBittorrent, Deluge, rTorrent, Transmission, uTorrent, and other download clients are supported and integrated
+* Full integration with Calibre (add to library, conversion) (Requires Calibre Content Server)
+* And a beautiful UI
+
+## Support
+
+[![Wiki](https://img.shields.io/badge/servarr-wiki-181717.svg?maxAge=60)](https://wiki.servarr.com/readarr)
+[![Discord](https://img.shields.io/badge/discord-chat-7289DA.svg?maxAge=60)](https://readarr.com/discord)
+[![Reddit](https://img.shields.io/badge/reddit-discussion-FF4500.svg?maxAge=60)](https://www.reddit.com/r/readarr)

+ 0 - 0
media/data/books/ebooks/.gitkeep


+ 0 - 0
media/data/books/spoken/.gitkeep


BIN
packages/dashboard/public/logos/apps/readarr.jpg