vsfexperts/latex-render-server
Simple REST service to render LaTeX documents. See https://github.com/vsfexperts/LaTeX for details.
3.3K
Simple REST service to render LaTeX documents. See https://github.com/vsfexperts/LaTeX for details.
Dockerfile available at https://github.com/vsfexperts/LaTeX/blob/development/latex-docker/src/main/docker/Dockerfile Parameters are documented at https://github.com/vsfexperts/LaTeX as well.
Sample:
Start with docker run -d -p 8080:8080 vsfexperts/latex-render-server
Send LaTeX document via POST:
curl -X POST --data-binary @sample.tex -H "Content-Type: text/plain; charset=UTF-8" http://localhost:8080
Document must contain/embed all data. Additional files aren't supported atm. See github page for workarounds.
Poll http://localhost:8080/ UUID was returned as json response in previous request. Status code is 400, if the document wasn't found/not yet created. PDF is returned otherwise.
Admin URL at http://localhost:8080/admin/index.html Prometheus/Spring Boot Actuator/Jolokia have been integrated
docker pull vsfexperts/latex-render-server