asciidoctor-pdf on Docker (Stable)
This project is used for internal documentation at Obscurity Labs. We required a Docker Image to perform our ASCII Doctor compilations. This image provides a clean and easy way for you to compile your PDF with out managing gems and other one off issues with trying to get asciidoctor-pdf work on OSX etc.
Daily at 06:00 on a Cron schedule of 0 6 * * *
We supply the image via the new GitHub Docker Repo as well as DockerHub.
Pull image from the command line:
foo@bar:~$ docker pull docker.pkg.github.com/obscuritylabs/asciidoctor-pdf/asciidoctor-pdf:latest
Use as base image in DockerFile:
FROM docker.pkg.github.com/obscuritylabs/asciidoctor-pdf/asciidoctor-pdf:latest
Use to compile a PDF from command line:
foo@bar:~$ docker run -it -v $(pwd):/document/ docker.pkg.github.com/obscuritylabs/asciidoctor-pdf/asciidoctor-pdf /document/doc.adoc --destination-dir .
Pull image from the command line:
foo@bar:~$ docker pull obscuritylabs/asciidoctor-pdf:latest
Use as base image in DockerFile:
FROM obscuritylabs/asciidoctor-pdf:latest
Use to compile a PDF from command line:
foo@bar:~$ docker run -it -v $(pwd):/document/ obscuritylabs/asciidoctor-pdf /document/doc.adoc --destination-dir .