1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-12 17:26:19 +00:00
Files
geek-cookbook/manuscript/recipes/autopirate/readarr.md

2.2 KiB

description
description
Readarr is "Sonarr/Radarr for eBooks"

Readarr

!!! warning This is not a complete recipe - it's a component of the AutoPirate "uber-recipe", but has been split into its own page to reduce complexity.

Readarr, in the fine tradition of [Radarr][radarr] and [Sonarr][sonarr], is a tool for "sourcing" eBooks, using usenet or bittorrent indexers.

Readarr Screenshot

Features include:

  • 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
  • Fully configurable book renaming
  • Full integration with [SABnzbd][sabnzbd] and [NZBGet][sabnzbd]
  • Full integration with [Calibre][calibre-web] (add to library, conversion)
  • And a beautiful UI!

Inclusion into AutoPirate

To include Readarr in your [AutoPirate][autopirate] stack, include something like the following in your autopirate.yml stack definition file:

radarr:
  image: linuxserver/readarr:latest
  env_file : /var/data/config/autopirate/readarr.env
  volumes:
   - /var/data/autopirate/readarr:/config
   - /var/data/media/books:/books
  networks:
  - internal
  deploy:
    labels:
      # traefik
      - traefik.enable=true
      - traefik.docker.network=traefik_public

      # traefikv1
      - traefik.frontend.rule=Host:readarr.example.com
      - traefik.port=8787
      - traefik.frontend.auth.forward.address=http://traefik-forward-auth:4181
      - traefik.frontend.auth.forward.authResponseHeaders=X-Forwarded-User
      - traefik.frontend.auth.forward.trustForwardHeader=true        

      # traefikv2
      - "traefik.http.routers.readarr.rule=Host(`readarr.example.com`)"
      - "traefik.http.routers.readarr.entrypoints=https"
      - "traefik.http.services.readarr.loadbalancer.server.port=8787"
      - "traefik.http.routers.readarr.middlewares=forward-auth"

--8<-- "premix-cta.md" --8<-- "recipe-autopirate-toc.md" --8<-- "recipe-footer.md"