Readarr + Docker on SolusOS

Readarr is a ebook collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new books from your favorite authors and will interface with clients and indexers to grab, sort, and rename them.

sudo docker pull floppy/readarr:amd64-unstable
sudo docker create \
  --name=readarr \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=America/Chicago \
  -e UMASK_SET=022 `#optional` \
  -p 8787:8787 \
  -v /home/docker/Readarr/config:/config \
  -v /home/docker/Readarr/books:/books \
  -v /home/docker/Readarr/downloads:/downloads \
  --restart unless-stopped \
  floppy/readarr:amd64-unstable
sudo docker start readarr

Configure Readarr at http://localhost:8787

Leave a comment