From 7b339d02a0839909c643f761b29c28cc483ef055 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Wed, 15 Jan 2020 09:09:34 -0800 Subject: Add Docker and GH Actions instructions/links to INSTALL.md. --- INSTALL.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'INSTALL.md') diff --git a/INSTALL.md b/INSTALL.md index 3b1047e23..33cc05424 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -142,6 +142,29 @@ device you are using. - Pandoc is in the [NetBSD] and [FreeBSD ports] repositories. +## Docker + +The official Docker images for pandoc can be found at + and at +[dockerhub](https://hub.docker.com/). + +The [pandoc/core](https://hub.docker.com/r/pandoc/core) +image contains `pandoc` and `pandoc-citeproc`. + +The [pandoc/latex](https://hub.docker.com/r/pandoc/latex) +image also contains the minimal LaTeX installation needed +to produce PDFs using pandoc. + +To run pandoc using Docker, converting `README.md` to `README.pdf`: + + docker run --volume "`pwd`:/data" --user `id -u`:`id -g` pandoc/latex README.md -o README.pdf + +## GitHub Actions + +Pandoc can be run through +[GitHub Actions](https://github.com/features/actions). For some +examples, see . + ## Compiling from source If for some reason a binary package is not available for your -- cgit v1.2.3