Title logo
linuxserver/calibre.

47,617,722 302 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/calibre
Build Time 24 Apr 2024 07:06:00
Base Image lsiobase/guacgui
Category Media
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 7.9.0 24 Apr 2024 at 06:51:52

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  calibre:
    image: linuxserver/calibre:7.9.0
    container_name: calibre
    restart: unless-stopped
    environment:
      - UMASK_SET # For umask setting of Calibre, default if left unset is 022.
      - TZ # Specify a timezone to use e.g. Europe/London.
      - PUID # UID of user to take ownership of application/files
      - PGID # GID of user to take ownership of application/files
      - GUAC_USER # Username for the calibre desktop gui. (Optional)
      - GUAC_PASS # Password's md5 hash for the calibre desktop gui. (Optional)
    volumes:
      - /host/path/to/config:/config # Where calibre should store its database and library
    ports:
      - 8081:8081/tcp # Calibre webserver gui.
      - 8080:8080/tcp # Calibre desktop gui.

CLI

docker create \
  --name=calibre \
  -e UMASK_SET `# For umask setting of Calibre, default if left unset is 022.` \
  -e TZ `# Specify a timezone to use e.g. Europe/London.` \
  -e PUID `# UID of user to take ownership of application/files` \
  -e PGID `# GID of user to take ownership of application/files` \
  -e GUAC_USER `# Username for the calibre desktop gui. (Optional)` \
  -e GUAC_PASS `# Password's md5 hash for the calibre desktop gui. (Optional)` \
  -v /host/path/to/config:/config `# Where calibre should store its database and library` \
  -p 8081:8081/tcp `# Calibre webserver gui.` \
  -p 8080:8080/tcp `# Calibre desktop gui.` \
  --restart unless-stopped \
  linuxserver/calibre:7.9.0