Merge pull request #4639 from frenicohansen/main

Add calibre-web service
This commit is contained in:
🏔️ Peak
2025-01-14 13:07:26 +01:00
committed by GitHub
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# documentation: https://github.com/linuxserver/docker-calibre-web
# slogan: Calibre-web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
# tags: calibre,calibre-web,ebook,library,epub,ereader,kindle,book,reader
# logo: svgs/calibre-web.svg
# port: 8083
services:
calibre-web:
image: 'lscr.io/linuxserver/calibre-web:latest'
environment:
- SERVICE_FQDN_CALIBRE_8083
- PUID=1000
- PGID=1000
- TZ=${TZ:-Etc/UTC}
# optional & x86-64 only Adds the ability to perform ebook conversion
- 'DOCKER_MODS=${DOCKER_MODS:-linuxserver/mods:universal-calibre}'
volumes:
- 'calibre-web-data:/config'
- 'calibre-library:/books'
restart: unless-stopped
healthcheck:
test:
- CMD
- curl
- '-f'
- 'http://127.0.0.1:8083'
interval: 5s
timeout: 20s
retries: 10