forked from linuxserver/docker-lazylibrarian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme-vars.yml
71 lines (61 loc) · 4.37 KB
/
readme-vars.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
project_name: lazylibrarian
project_url: "https://lazylibrarian.gitlab.io/"
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/lazylibrarian-icon.png"
project_blurb: |
[{{ project_name|capitalize }}]({{ project_url }}) 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.
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
# supported architectures
available_architectures:
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
# container parameters
param_container_name: "{{ project_name }}"
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "<path to data>", desc: "LazyLibrarian config" }
- { vol_path: "/downloads", vol_host_path: "<path to downloads>", desc: "Download location" }
- { vol_path: "/books", vol_host_path: "<path to data>", desc: "Books location" }
param_usage_include_ports: true
param_ports:
- { external_port: "5299", internal_port: "5299", port_desc: "The port for the LazyLibrarian webinterface" }
param_usage_include_env: true
param_env_vars:
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use e.g. Europe/London" }
# optional container parameters
opt_param_usage_include_env: true
opt_param_env_vars:
- { env_var: "DOCKER_MODS", env_value: "linuxserver/calibre-web:calibre|linuxserver/mods:lazylibrarian-ffmpeg", desc: "Allows additional functionality to be added, e.g. the Calibredb import program (optional, more info below)"}
# application setup block
app_setup_block_enabled: true
app_setup_block: |
Access the webui at `http://<your-ip>:5299/home`, for more information check out [{{ project_name|capitalize }}]({{ project_url }}).
### Calibredb import
**x86-64 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 above 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`.
# changelog
changelogs:
- { date: "23.10.19:", desc: "Add python module Pillow." }
- { date: "31.07.19:", desc: "Add pyopenssl, remove git dependency during build time." }
- { date: "09.07.19:", desc: "Rebase to Ubuntu Bionic, enables Calibre docker mod." }
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
- { date: "05.03.19:", desc: "Added apprise python package." }
- { date: "22.02.19:", desc: "Rebasing to alpine 3.9." }
- { date: "10.12.18:", desc: "Moved to Pipeline Building" }
- { date: "16.08.18:", desc: "Rebase to alpine 3.8" }
- { date: "05.01.18:", desc: "Deprecate cpu_core routine lack of scaling" }
- { date: "12.12.17:", desc: "Rebase to alpine 3.7" }
- { date: "21.07.17:", desc: "Internal git pull instead of at runtime" }
- { date: "25.05.17:", desc: "Rebase to alpine 3.6" }
- { date: "07.02.17:", desc: "Rebase to alpine 3.5" }
- { date: "30.01.17:", desc: "Compile libunrar.so to allow reading of .cbr format files" }
- { date: "12.01.17:", desc: "Add ghostscript package, allows magazine covers to be created etc" }
- { date: "14.10.16:", desc: "Add version layer information" }
- { date: "03.10.16:", desc: "Fix non-persistent settings and make log folder" }
- { date: "28.09.16:", desc: "Inital Release" }