This image can be used to run pandoc within a docker container.
One use case of pandoc is to convert markdown to HTML or PDF:
# build the image
docker build -t pandoc_docker .
# example (assuming existing file ./README.md)
docker run --rm -it -v ${PWD}:/data normoes/pandoc -o README.pdf README.md
docker run --rm -it -v ${PWD}:/data normoes/pandoc -o README.html README.md
At the moment only texlive is installed.
Content type
Image
Digest
Size
261.4 MB
Last updated
about 7 years ago
docker pull normoes/pandoc