Skip to content

Commit

Permalink
feat: add calibre-web service
Browse files Browse the repository at this point in the history
  • Loading branch information
frenicohansen committed Dec 21, 2024
1 parent aae54e8 commit 520a5ef
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
5 changes: 5 additions & 0 deletions public/svgs/calibre-web.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions templates/compose/calibre-web.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 520a5ef

Please sign in to comment.