esc
Type to search the docs
Back to catalog

calibre-web

Draft

Web app for browsing, reading, and downloading e-books from a Calibre library

Run locally

Terminal
$ npx launchfile up calibre-web

Requires Docker Desktop. No source code needed — pulls pre-built images and starts calibre-web with all dependencies.

Image: lscr.io/linuxserver/calibre-web:latest
Launchfile View on GitHub
# yaml-language-server: $schema=https://launchfile.dev/schema/v1
version: launch/v1
name: calibre-web
description: "Web app for browsing, reading, and downloading e-books from a Calibre library"

image: lscr.io/linuxserver/calibre-web:latest
provides:
  - protocol: http
    port: 8083
    exposed: true
env:
  PUID:
    default: "1000"
    description: "User ID for file permissions"
  PGID:
    default: "1000"
    description: "Group ID for file permissions"
  TZ:
    default: "UTC"
    description: "Timezone"
storage:
  config:
    path: /config
    persistent: true
  books:
    path: /books
    persistent: true
health: /
restart: always

Learn More

Spec references for features used in this Launchfile.

Related Apps