Title logo
linuxserver/calibre-web.

A Calibre-Web container, brought to you by LinuxServer.io.

193,003,287 865 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/calibre-web
Build Time 14 Apr 2024 02:11:48
Category Books
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 0.6.21 14 Apr 2024 at 02:11:38

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  calibre-web:
    image: linuxserver/calibre-web:0.6.21
    container_name: calibre-web
    restart: no
    environment:
      - TZ # Specify a timezone to use EG Europe/London.
      - PUID=1000 # ID of user to take ownership of application/files
      - PGID=1000 # GID of user to take ownership of application/files
      - DOCKER_MODS=linuxserver/calibre-web:calibre # #optional & x86-64 only Adds the ability to perform ebook conversion e.g. linuxserver/calibre-web:calibre 
    volumes:
      - /host/path/to/config:/config # Where calibre-web stores the internal database and config.
      - /host/path/to/books:/books # Where your calibre database is located
    ports:
      - 8083:8083/tcp # Webui

CLI

docker create \
  --name=calibre-web \
  -e TZ `# Specify a timezone to use EG Europe/London.` \
  -e PUID=1000 `# ID of user to take ownership of application/files` \
  -e PGID=1000 `# GID of user to take ownership of application/files` \
  -e DOCKER_MODS=linuxserver/calibre-web:calibre `# #optional & x86-64 only Adds the ability to perform ebook conversion e.g. linuxserver/calibre-web:calibre ` \
  -v /host/path/to/config:/config `# Where calibre-web stores the internal database and config.` \
  -v /host/path/to/books:/books `# Where your calibre database is located` \
  -p 8083:8083/tcp `# Webui` \
  --restart no \
  linuxserver/calibre-web:0.6.21