Skip to content

devloberto/latex-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

latex-docker

This project provides a docker image containing a full latex installation incl. pandoc for converting tex documents to html.
The docker image can be used to locally build latex documents as well as automating latex builds and document conversion in e.g. CICD pipelines.

usage

The image can be pulled from the github container registry:

docker pull ghcr.io/devloberto/latex-docker:master

I personally use the image in docker compose files to build my latex documents.
An example of such a compose.yml is shown below:

services:
  portfolio:
    image: ghcr.io/devloberto/latex-docker:master
    volumes:
      - "${PWD}:/home/latex/portfolio"
    working_dir: "/home/latex/portfolio"
    user: "${UID}:${GID}"
    command: ${CMD:-make run}

About

A docker image to automate latex builds and document conversion in CICD pipelines.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors