docker-documentation/images/docker-calibre-web.md

207 wiersze
11 KiB
Markdown
Czysty Zwykły widok Historia

2020-06-29 12:55:51 +00:00
# [linuxserver/calibre-web](https://github.com/linuxserver/docker-calibre-web)
2019-02-18 01:15:03 +00:00
2020-06-29 12:55:51 +00:00
[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-calibre-web.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-calibre-web)
[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-calibre-web.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-calibre-web/releases)
[![GitHub Package Repository](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub%20Package&logo=github)](https://github.com/linuxserver/docker-calibre-web/packages)
2020-12-15 19:31:16 +00:00
[![GitLab Container Registry](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab)](https://gitlab.com/linuxserver.io/docker-calibre-web/container_registry)
2020-06-29 12:55:51 +00:00
[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/calibre-web.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/calibre-web "Get your own version badge on microbadger.com")
[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/calibre-web.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/calibre-web)
[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/calibre-web.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/calibre-web)
[![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-calibre-web%2Fjob%2Fmaster%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-calibre-web/job/master/)
2020-11-02 06:20:03 +00:00
[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Fci-tests.linuxserver.io%2Flinuxserver%2Fcalibre-web%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/calibre-web/latest/index.html)
2019-02-18 01:15:03 +00:00
2020-06-29 12:55:51 +00:00
[Calibre-web](https://github.com/janeczku/calibre-web) 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.
2019-02-18 01:15:03 +00:00
This software is a fork of library and licensed under the GPL v3 License.
2020-06-29 12:55:51 +00:00
2019-02-18 01:15:03 +00:00
## Supported Architectures
2019-09-02 12:56:00 +00:00
Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
2019-02-18 01:15:03 +00:00
2020-11-02 06:20:03 +00:00
Simply pulling `ghcr.io/linuxserver/calibre-web` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
2019-02-18 01:15:03 +00:00
The architectures supported by this image are:
| Architecture | Tag |
2020-06-29 12:55:51 +00:00
| :----: | --- |
2019-02-18 01:15:03 +00:00
| x86-64 | amd64-latest |
| arm64 | arm64v8-latest |
2019-03-25 00:11:42 +00:00
| armhf | arm32v7-latest |
2019-02-18 01:15:03 +00:00
2020-06-29 12:55:51 +00:00
2019-02-18 01:15:03 +00:00
## Usage
Here are some example snippets to help you get started creating a container from this image.
2020-10-05 12:56:19 +00:00
### docker-compose ([recommended](https://docs.linuxserver.io/general/docker-compose))
2019-02-18 01:15:03 +00:00
Compatible with docker-compose v2 schemas.
```yaml
---
2020-04-13 12:56:13 +00:00
version: "2.1"
2019-02-18 01:15:03 +00:00
services:
calibre-web:
2020-11-02 06:20:03 +00:00
image: ghcr.io/linuxserver/calibre-web
2019-02-18 01:15:03 +00:00
container_name: calibre-web
environment:
2019-03-03 08:38:47 +00:00
- PUID=1000
- PGID=1000
2019-02-18 01:15:03 +00:00
- TZ=Europe/London
2019-07-16 22:09:48 +00:00
- DOCKER_MODS=linuxserver/calibre-web:calibre
2019-02-18 01:15:03 +00:00
volumes:
- <path to data>:/config
- <path to calibre library>:/books
ports:
- 8083:8083
restart: unless-stopped
```
2020-10-05 12:56:19 +00:00
### docker cli
```
docker run -d \
--name=calibre-web \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-e DOCKER_MODS=linuxserver/calibre-web:calibre \
-p 8083:8083 \
-v <path to data>:/config \
-v <path to calibre library>:/books \
--restart unless-stopped \
2020-11-02 06:20:03 +00:00
ghcr.io/linuxserver/calibre-web
2020-10-05 12:56:19 +00:00
```
2019-02-18 01:15:03 +00:00
## Parameters
2020-06-29 12:55:51 +00:00
Docker images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.
2019-02-18 01:15:03 +00:00
2020-06-29 12:55:51 +00:00
### Ports (`-p`)
2019-02-18 01:15:03 +00:00
| Parameter | Function |
2020-06-29 12:55:51 +00:00
| :----: | --- |
2019-02-18 01:15:03 +00:00
| `8083` | WebUI |
2020-06-29 12:55:51 +00:00
### Environment Variables (`-e`)
2019-02-18 01:15:03 +00:00
| Env | Function |
2020-06-29 12:55:51 +00:00
| :----: | --- |
2019-03-03 08:38:47 +00:00
| `PUID=1000` | for UserID - see below for explanation |
| `PGID=1000` | for GroupID - see below for explanation |
2019-02-18 01:15:03 +00:00
| `TZ=Europe/London` | Specify a timezone to use EG Europe/London. |
2020-06-29 12:55:51 +00:00
| `DOCKER_MODS=linuxserver/calibre-web:calibre` | #optional & **x86-64 only** Adds the ability to perform ebook conversion |
2019-02-18 01:15:03 +00:00
2020-06-29 12:55:51 +00:00
### Volume Mappings (`-v`)
2019-02-18 01:15:03 +00:00
| Volume | Function |
2020-06-29 12:55:51 +00:00
| :----: | --- |
2019-02-18 01:15:03 +00:00
| `/config` | Where calibre-web stores the internal database and config. |
2020-09-30 11:44:48 +00:00
| `/books` | Where your preexisting calibre database is locate. |
2019-02-18 01:15:03 +00:00
2020-06-29 12:55:51 +00:00
## Environment variables from files (Docker secrets)
2020-06-01 12:56:16 +00:00
You can set any environment variable from a file by using a special prepend `FILE__`.
As an example:
2020-06-29 12:55:51 +00:00
```
2020-06-01 12:56:16 +00:00
-e FILE__PASSWORD=/run/secrets/mysecretpassword
```
Will set the environment variable `PASSWORD` based on the contents of the `/run/secrets/mysecretpassword` file.
## Umask for running applications
2020-06-29 12:55:51 +00:00
For all of our images we provide the ability to override the default umask settings for services started within the containers using the optional `-e UMASK=022` setting.
Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up [here](https://en.wikipedia.org/wiki/Umask) before asking for support.
2020-05-04 12:56:00 +00:00
2019-02-18 01:15:03 +00:00
## User / Group Identifiers
2020-06-29 12:55:51 +00:00
When using volumes (`-v` flags), permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`.
2019-02-18 01:15:03 +00:00
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
2019-03-03 08:38:47 +00:00
In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below:
2019-02-18 01:15:03 +00:00
2020-06-29 12:55:51 +00:00
```
2019-02-18 01:15:03 +00:00
$ id username
2019-03-03 08:38:47 +00:00
uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)
2019-02-18 01:15:03 +00:00
```
## Application Setup
Webui can be found at `http://your-ip:8083`
On the initial setup screen, enter `/books` as your calibre library location.
2020-06-29 12:55:51 +00:00
**Default admin login:**
*Username:* admin
*Password:* admin123
2019-06-13 16:46:42 +00:00
2020-06-29 12:55:51 +00:00
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`
2019-06-13 16:46:42 +00:00
2020-06-29 12:55:51 +00:00
**x86-64 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 detailed above 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`
2019-09-29 09:44:22 +00:00
2020-07-12 11:48:17 +00:00
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`
2020-04-28 15:23:37 +00:00
2020-05-04 12:56:00 +00:00
To reverse proxy with our Letsencrypt docker container we include a preconfigured reverse proxy config, for other instances of Nginx use the following location block:
2020-06-29 12:55:51 +00:00
```
2019-02-18 01:15:03 +00:00
location /calibre-web {
proxy_pass http://<your-ip>:8083;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Script-Name /calibre-web;
}
```
2020-06-29 12:55:51 +00:00
2020-04-13 12:56:13 +00:00
## Docker Mods
2020-10-05 12:56:19 +00:00
[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=calibre-web&query=%24.mods%5B%27calibre-web%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=calibre-web "view available mods for this container.") [![Docker Universal Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=universal&query=%24.mods%5B%27universal%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=universal "view available universal mods.")
2020-04-13 12:56:13 +00:00
2020-10-05 12:56:19 +00:00
We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above.
2020-04-13 12:56:13 +00:00
2019-09-30 12:56:45 +00:00
2019-02-18 01:15:03 +00:00
## Support Info
2019-09-02 12:56:00 +00:00
* Shell access whilst the container is running:
2019-02-18 01:15:03 +00:00
* `docker exec -it calibre-web /bin/bash`
2019-09-02 12:56:00 +00:00
* To monitor the logs of the container in realtime:
2019-02-18 01:15:03 +00:00
* `docker logs -f calibre-web`
2019-09-02 12:56:00 +00:00
* Container version number
2019-02-18 01:15:03 +00:00
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' calibre-web`
* Image version number
2020-11-02 06:20:03 +00:00
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/calibre-web`
2019-02-18 01:15:03 +00:00
## Versions
2020-10-12 21:31:22 +00:00
* **12.10.20:** - Add libxi6
2020-07-12 11:48:17 +00:00
* **12.07.20:** - Add kepubify for arm64v8
2020-06-07 01:08:33 +00:00
* **05.06.20:** - Add kepubify for x86-64 and arm32v7
2020-05-06 17:41:34 +00:00
* **06.05.20:** - Add libxslt1.1 and update ImageMagick policy
2020-01-19 18:38:43 +00:00
* **19.01.20:** - Adding LDAP libs.
* **13.10.19:** - Migrate to Python3.
2019-08-01 18:23:56 +00:00
* **01.08.19:** - Add libxcomposite1.
2019-06-13 16:46:42 +00:00
* **13.06.19:** - Add docker mod to enable optional ebook conversion on x86-64. Add unrar.
2019-06-10 00:20:56 +00:00
* **02.06.19:** - Rebase to Ubuntu Bionic & add Gdrive support.
2019-03-25 00:11:42 +00:00
* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag.
2019-02-25 22:27:25 +00:00
* **23.02.19:** - Rebase to alpine 3.9, use repo version of imagemagick.
2019-02-18 01:15:03 +00:00
* **11.02.19:** - Add pipeline logic and multi arch.
* **03.01.19:** - Remove guest user from default app.db.
* **16.08.18:** - Rebase to alpine 3.8.
* **03.07.18:** - New build pushed, all versions below `67` have [vulnerability](https://github.com/janeczku/calibre-web/issues/534).
2020-06-29 12:55:51 +00:00
* **05.01.18:** - Deprecate cpu_core routine lack of scaling.
2019-02-18 01:15:03 +00:00
* **06.12.17:** - Rebase to alpine 3.7.
* **27.11.17:** - Use cpu core counting routine to speed up build time.
* **24.07.17:** - Curl version for imagemagick.
* **17.07.17:** - Initial release.