Sign inSign up

techantidote/calibre

By techantidote

•Updated over 7 years ago

Convert ebooks to Kindle format

Image
0

120

techantidote/calibre repository overview

⁠Convert ebooks to Kindle format -mobi using calibre
docker run -it --name mobi techantidote/calibre bash

-Copy the ebook to the container.

docker cp e-book.epub mobi:/

-Convert to mobi format:

ebook-convert e-book.epub my-kindle.mobi

-Copy converted file to your docker host.

docker cp mobi:/my-kindle.mobi .

[Alternatively, use a bind mount while running the container]

⁠Dockerfile
FROM ubuntu:18.04
RUN apt update && apt upgrade && apt install wget python -y
RUN wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | bash /dev/stdin
CMD ["bash"]

Tag summary

Content type

Image

Digest

Size

201.9 MB

Last updated

over 7 years ago

docker pull techantidote/calibre