Skip to content

Latest commit

 

History

History
64 lines (47 loc) · 1.11 KB

File metadata and controls

64 lines (47 loc) · 1.11 KB

Exporting works as HTML

Exporting data from app

  • tags & works can exported as zip archive containing html files (can be converted to any format using calibre).
  • additionally work can be exported as epub archive.

Convert html ebook to another formats using Calibre

ebook-convert ebook/index.html ebook.epub

Calibre Docker setup

run calibre in containerized environment

  1. Create core files:
  • Dockerfile
FROM ubuntu:jammy
  • docker-compose.yml
services:
  calibre:
    container_name: calibre-ubuntu
    build: .
    restart: "no"
    volumes:
      - <path_to_your_data_directory>:/home
  1. build docker image
docker compose build
  1. start + bash into container
docker compose run --name calibre calibre bash
  1. setup calibre
sudo apt update
sudo apt install calibre
Extra
  1. bash into already created container
docker container start -i <container name, example calibre_run_ba7c7673c2e6>
  1. disable network access for container
docker network disconnect calibre_default <container name, example calibre_run_ba7c7673c2e6>