-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
readme-vars.yml
139 lines (131 loc) · 7.79 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
---
# project information
project_name: calibre-web
project_url: "https://github.com/janeczku/calibre-web"
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/calibre-web-icon.png"
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
project_categories: "Books"
project_blurb: |
[{{ project_name|capitalize }}]({{ project_url }}) is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. It is also possible to integrate google drive and edit metadata and your calibre library through the app itself.
This software is a fork of library and licensed under the GPL v3 License.
# supported architectures
available_architectures:
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
# development version
development_versions: true
development_versions_items:
- {tag: "latest", desc: "Releases of Calibre-Web"}
- {tag: "nightly", desc: "Commits to the master branch of Calibre-Web"}
# container parameters
common_param_env_vars_enabled: true
param_container_name: "{{ project_name }}"
param_usage_include_env: true
param_env_vars:
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London."}
param_usage_include_vols: true
param_volumes:
- {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/data", desc: "Where calibre-web stores the internal database and config."}
- {vol_path: "/books", vol_host_path: "/path/to/calibre/library", desc: "Where your preexisting calibre database is located."}
param_usage_include_ports: true
param_ports:
- {external_port: "8083", internal_port: "8083", port_desc: "WebUI"}
# optional container parameters
opt_param_usage_include_env: true
opt_param_env_vars:
- {env_var: "DOCKER_MODS", env_value: "linuxserver/mods:universal-calibre", desc: "#optional & **x86-64 only** Adds the ability to perform ebook conversion"}
- {env_var: "OAUTHLIB_RELAX_TOKEN_SCOPE", env_value: "1", desc: "Optionally set this to allow Google OAUTH to work"}
# application setup block
app_setup_block_enabled: true
app_setup_block: |
Webui can be found at `http://your-ip:8083`
On the initial setup screen, enter `/books` as your calibre library location.
**Default admin login:**
*Username:* admin
*Password:* admin123
If you lock yourself out or forget a password, you will need to specify the app.db similar to this:
`docker exec -it calibre-web python3 /app/calibre-web/cps.py -p /config/app.db -s <user>:<pass>`
If you fail to specify the proper db, it will appear to succeed, but it will not work.
Unrar is included by default and needs to be set in the Calibre-Web admin page (Basic Configuration:External Binaries) with a path of `/usr/bin/unrar`
**64bit only** We have implemented the optional ability to pull in the dependencies to enable ebook conversion utilising Calibre, 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 shown in the docker-mods section to pull an addition docker layer to enable ebook conversion and then in the Calibre-Web admin page (Basic Configuration:External Binaries) set the **Path to Calibre E-Book Converter** to `/usr/bin/ebook-convert` on versions 0.6.21 and lower. For 0.6.22 and higher, set the directory, `/usr/bin/` only.
This image contains the [kepubify](https://pgaskin.net/kepubify/) ebook conversion tool (MIT License) to convert epub to kepub. In the Calibre-Web admin page (Basic Configuration:External Binaries) set the **Path to Kepubify E-Book Converter** to `/usr/bin/kepubify`
# init diagram
init_diagram: |
"calibre-web:latest": {
docker-mods
base {
fix-attr +\nlegacy cont-init
}
docker-mods -> base
legacy-services
custom services
init-services -> legacy-services
init-services -> custom services
custom services -> legacy-services
legacy-services -> ci-service-check
init-migrations -> init-adduser
init-config -> init-calibre-web-config
init-os-end -> init-config
init-calibre-web-config -> init-config-end
init-config -> init-config-end
init-crontab-config -> init-config-end
init-config -> init-crontab-config
init-mods-end -> init-custom-files
base -> init-envfile
base -> init-migrations
init-config-end -> init-mods
init-mods-package-install -> init-mods-end
init-mods -> init-mods-package-install
init-adduser -> init-os-end
init-envfile -> init-os-end
init-custom-files -> init-services
init-services -> svc-calibre-web
svc-calibre-web -> legacy-services
init-services -> svc-cron
svc-cron -> legacy-services
}
Base Images: {
"baseimage-ubuntu:noble"
}
"calibre-web:latest" <- Base Images
# changelog
changelogs:
- {date: "05.12.24:", desc: "Rebase to noble."}
- {date: "26.08.24:", desc: "Add new dep, xdg-utils."}
- {date: "07.07.24:", desc: "Add new dep, libmagic1."}
- {date: "17.10.23:", desc: "Remove some packages that are required by the calibre mod but not the base container."}
- {date: "07.10.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar). Switch to Python virtual environment."}
- {date: "13.04.23:", desc: "Deprecate armhf."}
- {date: "27.03.23:", desc: "Add cmake as build dep for Levenshtein."}
- {date: "27.12.22:", desc: "Add ghostscript, libxtst6, libxkbfile-dev."}
- {date: "20.12.22:", desc: "Improve init script and prevent harmless error."}
- {date: "19.10.22:", desc: "Rebase to jammy. Upgrade to s6v3. Clean up build dependencies."}
- {date: "04.11.21:", desc: "Update pip arguments to ignore distro installed packages."}
- {date: "24.06.21:", desc: "Add note on optional OAUTHLIB_RELAX_TOKEN_SCOPE for Google OAUTH support."}
- {date: "17.05.21:", desc: "Add linuxserver wheel index."}
- {date: "10.02.21:", desc: "Add libxrandr2"}
- {date: "25.01.21:", desc: "Add nightly tag"}
- {date: "19.01.21:", desc: "Add python3-pkg-resources"}
- {date: "13.01.21:", desc: "Rebase to Ubuntu Focal, see [here](https://docs.linuxserver.io/faq#my-host-is-incompatible-with-images-based-on-ubuntu-focal) for troubleshooting armhf."}
- {date: "12.10.20:", desc: "Add libxi6"}
- {date: "12.07.20:", desc: "Add kepubify for arm64v8"}
- {date: "05.06.20:", desc: "Add kepubify for x86-64 and arm32v7"}
- {date: "06.05.20:", desc: "Add libxslt1.1 and update ImageMagick policy"}
- {date: "19.01.20:", desc: "Adding LDAP libs."}
- {date: "13.10.19:", desc: "Migrate to Python3."}
- {date: "01.08.19:", desc: "Add libxcomposite1."}
- {date: "13.06.19:", desc: "Add docker mod to enable optional ebook conversion on x86-64. Add unrar."}
- {date: "02.06.19:", desc: "Rebase to Ubuntu Bionic & add Gdrive support."}
- {date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag."}
- {date: "23.02.19:", desc: "Rebase to alpine 3.9, use repo version of imagemagick."}
- {date: "11.02.19:", desc: "Add pipeline logic and multi arch."}
- {date: "03.01.19:", desc: "Remove guest user from default app.db."}
- {date: "16.08.18:", desc: "Rebase to alpine 3.8."}
- {date: "03.07.18:", desc: "New build pushed, all versions below `67` have [vulnerability](https://github.com/janeczku/calibre-web/issues/534)."}
- {date: "05.01.18:", desc: "Deprecate cpu_core routine lack of scaling."}
- {date: "06.12.17:", desc: "Rebase to alpine 3.7."}
- {date: "27.11.17:", desc: "Use cpu core counting routine to speed up build time."}
- {date: "24.07.17:", desc: "Curl version for imagemagick."}
- {date: "17.07.17:", desc: "Initial release."}