Command-line tool to convert EPUB files to KF8 and Mobi file formats.
1.9K
Amazon's KindleGen dockerized.
You could run KindleGen in a container by executing the following docker command.
docker run -it --rm \
--volume "$PWD:/home/kindlegen" \
koenrh/kindlegen \
/home/kindlegen/modern-vim.epub
You could make this command more easily accessible by putting it in an executable,
and make sure that it is available in your $PATH. Alternatively, you could create
wrapper functions for your docker run commands (example).
kindlegen() {
docker run -it --rm \
--volume "$PWD:/home/kindlegen" \
--name kindlegen \
koenrh/kindlegen "$@"
}
Content type
Image
Digest
sha256:492b736fc…
Size
15.5 MB
Last updated
over 3 years ago
docker pull koenrh/kindlegen