
Calibre-web
Web interface for Calibre database
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.
Default login: admin
/ admin123
📜 Source: https://github.com/janeczku/calibre-web
📦 Image: https://docs.linuxserver.io/images/docker-calibre-web/
name: calibre-web
services:
calibre-web:
image: lscr.io/linuxserver/calibre-web:0.6.24
container_name: calibre-web
restart: unless-stopped
environment:
PUID: ${PUID}
PGID: ${PGID}
TZ: ${TIMEZONE}
DOCKER_MODS: linuxserver/mods:universal-calibre # optional
OAUTHLIB_RELAX_TOKEN_SCOPE: 1 # optional
volumes:
- ${DOCKER_VOLUMES}/calibre-web:/config
- ${STORAGE_CALIBRE_LIBRARY}:/books
networks:
- proxy
labels:
traefik.enable: true
traefik.http.routers.calibre-web.middlewares: localaccess@file
traefik.http.services.calibre-web.loadbalancer.server.port: 8083
homepage.group: Media
homepage.name: Calibre-web
homepage.icon: calibre-web.png
homepage.href: https://calibre-web.${MYDOMAIN}/
homepage.description: Web interface for Calibre database
networks:
proxy:
external: true