This repository uses a Docker image that contains pandoc and pandoc filters used to translate the PartiQL documentation into html and pdf.
The Docker image is uploaded to Docker Hub https://hub.docker.com/r/partiqlteam/pandoc
While in this folder execute
cd ..
docker run -it --entrypoint "/bin/bash" -v `pwd`:/build partiqlteam/pandoc:1.0
cd /build
make
exit
The above steps will
cd ..
move to the parent directory; the root of all documentationdocker run -it --entrypoint "/bin/bash" -v `pwd`:/build partiqlteam/pandoc:1.0
run docker such that--entrypoint "/bin/bash"
start up a shell in the docker image-v `pwd`:/build
mount the current directory,`pwd`
, in the docker image as folder/build
partiqlteam/pandoc:1.0
the name of the imagecd /build
this command is executed once you are inside the docker image and takes you to the build foldermake
run make to build the documentationexit
if make completed successfully, exit the docker image
All generated documentation is inside the folder webapp
. The folder
exists in both the docker image as /build/webapp
as well as your
local filesystem as <REPO_ROOT>/docs/webapp
.