From 87079cbd1d49aed17a2506d41fba5dc508fc96a2 Mon Sep 17 00:00:00 2001 From: <> Date: Sat, 18 Nov 2023 18:38:43 +0000 Subject: [PATCH] Deployed cdab79a0 with MkDocs version: 1.5.3 --- images/docker-lazylibrarian/index.html | 4 ++-- sitemap.xml.gz | Bin 1782 -> 1782 bytes 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/docker-lazylibrarian/index.html b/images/docker-lazylibrarian/index.html index e520445412..5dc05f4393 100644 --- a/images/docker-lazylibrarian/index.html +++ b/images/docker-lazylibrarian/index.html @@ -1,4 +1,4 @@ - lazylibrarian - LinuxServer.io
Skip to content

linuxserver/lazylibrarian

Scarf.io pulls GitHub Stars GitHub Release GitHub Package Repository GitLab Container Registry Quay.io Docker Pulls Docker Stars Jenkins Build LSIO CI

Lazylibrarian is a program to follow authors and grab metadata for all your digital reading needs. It uses a combination of Goodreads Librarything and optionally GoogleBooks as sources for author info and book info. This container is based on the DobyTang fork.

lazylibrarian

Supported Architectures

We utilise the docker manifest for multi-platform awareness. More information is available from docker here and our announcement here.

Simply pulling lscr.io/linuxserver/lazylibrarian:latest should retrieve the correct image for your arch, but you can also pull specific arch images via tags.

The architectures supported by this image are:

Architecture Available Tag
x86-64 amd64-<version tag>
arm64 arm64v8-<version tag>
armhf

Application Setup

Access the webui at http://<your-ip>:5299/home, for more information check out Lazylibrarian.

Calibredb import

64bit only We have implemented the optional ability to pull in the dependencies to enable the Calibredb import program:, this means if you don't require this feature the container isn't uneccessarily bloated but should you require it, it is easily available. This optional layer will be rebuilt automatically on our CI pipeline upon new Calibre releases so you can stay up to date. To use this option add the optional environmental variable as detailed in the docker-mods section to pull an addition docker layer to enable ebook conversion and then in the LazyLibrarian config page (Processing:Calibredb import program:) set the path to converter tool to /usr/bin/calibredb

ffmpeg

By adding linuxserver/mods:lazylibrarian-ffmpeg to your DOCKER_MODS environment variable you can install ffmpeg into your container on startup. This allows you to use the audiobook conversion features of LazyLibrarian. You can enable it in the Web UI under Settings > Processing > External Programs by setting the ffmpeg path to ffmpeg.

Media folders

We have set /books as optional path, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content.

Use the optional path if you dont understand, or dont want hardlinks/atomic moves.

The folks over at servarr.com wrote a good write-up on how to get started with this.

Usage

To help you get started creating a container from this image you can either use docker-compose or the docker cli.

---
+ lazylibrarian - LinuxServer.io       

linuxserver/lazylibrarian

Scarf.io pulls GitHub Stars GitHub Release GitHub Package Repository GitLab Container Registry Quay.io Docker Pulls Docker Stars Jenkins Build LSIO CI

Lazylibrarian is a program to follow authors and grab metadata for all your digital reading needs. It uses a combination of Goodreads Librarything and optionally GoogleBooks as sources for author info and book info. This container is based on the DobyTang fork.

lazylibrarian

Supported Architectures

We utilise the docker manifest for multi-platform awareness. More information is available from docker here and our announcement here.

Simply pulling lscr.io/linuxserver/lazylibrarian:latest should retrieve the correct image for your arch, but you can also pull specific arch images via tags.

The architectures supported by this image are:

Architecture Available Tag
x86-64 amd64-<version tag>
arm64 arm64v8-<version tag>
armhf

Application Setup

Access the webui at http://<your-ip>:5299/home, for more information check out Lazylibrarian.

Calibredb import

64bit only We have implemented the optional ability to pull in the dependencies to enable the Calibredb import program:, this means if you don't require this feature the container isn't uneccessarily bloated but should you require it, it is easily available. This optional layer will be rebuilt automatically on our CI pipeline upon new Calibre releases so you can stay up to date. To use this option add the optional environmental variable as detailed in the docker-mods section to pull an addition docker layer to enable ebook conversion and then in the LazyLibrarian config page (Processing:Calibredb import program:) set the path to converter tool to /usr/bin/calibredb

ffmpeg

By adding linuxserver/mods:lazylibrarian-ffmpeg to your DOCKER_MODS environment variable you can install ffmpeg into your container on startup. This allows you to use the audiobook conversion features of LazyLibrarian. You can enable it in the Web UI under Settings > Processing > External Programs by setting the ffmpeg path to ffmpeg.

Media folders

We have set /books as optional path, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content.

Use the optional path if you dont understand, or dont want hardlinks/atomic moves.

The folks over at servarr.com wrote a good write-up on how to get started with this.

Usage

To help you get started creating a container from this image you can either use docker-compose or the docker cli.

---
 version: "2.1"
 services:
   lazylibrarian:
@@ -55,4 +55,4 @@
   --pull \
   -t lscr.io/linuxserver/lazylibrarian:latest .
 

The ARM variants can be built on x86_64 hardware using multiarch/qemu-user-static

docker run --rm --privileged multiarch/qemu-user-static:register --reset
-

Once registered you can define the dockerfile to use with -f Dockerfile.aarch64.

Versions

  • 07.10.23: - Install unrar from linuxserver repo. Switch to Python virtual environment. Add Levenshtein.
  • 10.08.23: - Bump unrar to 6.2.10.
  • 01.07.23: - Deprecate armhf. As announced here
  • 07.12.22: - Rebase to Ubuntu Jammy, migrate to s6v3. Use pyproject.toml for deps. Build unrar from source.
  • 27.09.22: - Switch to Levenshtein, add cmake as build dep on armhf.
  • 07.05.22: - Rebase to Ubuntu Focal.
  • 22.05.21: - Make the paths clearer to the user, remove optional volume.
  • 17.05.21: - Add linuxserver wheel index.
  • 23.10.19: - Changed gitlab download link.
  • 23.10.19: - Add python module Pillow.
  • 31.07.19: - Add pyopenssl, remove git dependency during build time.
  • 09.07.19: - Rebase to Ubuntu Bionic, enables Calibre docker mod.
  • 28.06.19: - Rebasing to alpine 3.10.
  • 23.03.19: - Switching to new Base images, shift to arm32v7 tag.
  • 05.03.19: - Added apprise python package.
  • 22.02.19: - Rebasing to alpine 3.9.
  • 10.12.18: - Moved to Pipeline Building
  • 16.08.18: - Rebase to alpine 3.8
  • 05.01.18: - Deprecate cpu_core routine lack of scaling
  • 12.12.17: - Rebase to alpine 3.7
  • 21.07.17: - Internal git pull instead of at runtime
  • 25.05.17: - Rebase to alpine 3.6
  • 07.02.17: - Rebase to alpine 3.5
  • 30.01.17: - Compile libunrar.so to allow reading of .cbr format files
  • 12.01.17: - Add ghostscript package, allows magazine covers to be created etc
  • 14.10.16: - Add version layer information
  • 03.10.16: - Fix non-persistent settings and make log folder
  • 28.09.16: - Inital Release

Last update: October 17, 2023
Created: February 5, 2019
\ No newline at end of file +

Once registered you can define the dockerfile to use with -f Dockerfile.aarch64.

Versions

  • 07.10.23: - Install unrar from linuxserver repo. Switch to Python virtual environment. Add Levenshtein.
  • 10.08.23: - Bump unrar to 6.2.10.
  • 01.07.23: - Deprecate armhf. As announced here
  • 07.12.22: - Rebase to Ubuntu Jammy, migrate to s6v3. Use pyproject.toml for deps. Build unrar from source.
  • 27.09.22: - Switch to Levenshtein, add cmake as build dep on armhf.
  • 07.05.22: - Rebase to Ubuntu Focal.
  • 22.05.21: - Make the paths clearer to the user, remove optional volume.
  • 17.05.21: - Add linuxserver wheel index.
  • 23.10.19: - Changed gitlab download link.
  • 23.10.19: - Add python module Pillow.
  • 31.07.19: - Add pyopenssl, remove git dependency during build time.
  • 09.07.19: - Rebase to Ubuntu Bionic, enables Calibre docker mod.
  • 28.06.19: - Rebasing to alpine 3.10.
  • 23.03.19: - Switching to new Base images, shift to arm32v7 tag.
  • 05.03.19: - Added apprise python package.
  • 22.02.19: - Rebasing to alpine 3.9.
  • 10.12.18: - Moved to Pipeline Building
  • 16.08.18: - Rebase to alpine 3.8
  • 05.01.18: - Deprecate cpu_core routine lack of scaling
  • 12.12.17: - Rebase to alpine 3.7
  • 21.07.17: - Internal git pull instead of at runtime
  • 25.05.17: - Rebase to alpine 3.6
  • 07.02.17: - Rebase to alpine 3.5
  • 30.01.17: - Compile libunrar.so to allow reading of .cbr format files
  • 12.01.17: - Add ghostscript package, allows magazine covers to be created etc
  • 14.10.16: - Add version layer information
  • 03.10.16: - Fix non-persistent settings and make log folder
  • 28.09.16: - Inital Release

Last update: November 18, 2023
Created: February 5, 2019
\ No newline at end of file diff --git a/sitemap.xml.gz b/sitemap.xml.gz index 54137ce8a7b9eb96e648b968040acef90120332b..364d9056086cf877fcf179f1b7429b1bc3f704e2 100644 GIT binary patch delta 16 Xcmeyy`;C`fzMF$%8B63w_V;W6F$)EF delta 16 Xcmeyy`;C`fzMF$X?^eV{_V;W6GQtJb