Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koenrh/docker-kindlegen
Amazon's KindleGen dockerized.
https://github.com/koenrh/docker-kindlegen
docker docker-image
Last synced: 12 days ago
JSON representation
Amazon's KindleGen dockerized.
- Host: GitHub
- URL: https://github.com/koenrh/docker-kindlegen
- Owner: koenrh
- Created: 2018-12-23T13:02:19.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-10T07:56:53.000Z (over 1 year ago)
- Last Synced: 2024-06-02T04:35:17.186Z (5 months ago)
- Topics: docker, docker-image
- Language: Dockerfile
- Homepage:
- Size: 9.71 MB
- Stars: 19
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# KindleGen
Amazon's [KindleGen](https://www.amazon.com/gp/feature.html?ie=UTF8&docId=1000765211)
dockerized.## Usage
You could run KindleGen in a container by executing the following `docker` command.
```bash
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](https://github.com/jessfraz/dotfiles/blob/master/.dockerfunc)).```bash
kindlegen() {
docker run -it --rm \
--volume "$PWD:/home/kindlegen" \
--name kindlegen \
koenrh/kindlegen "$@"
}
```