Skip to content
/ texlive Public

Providing a texlive docker image in two flavors: basic and full

Notifications You must be signed in to change notification settings

inoxio/texlive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Texlive

This dockerimage is suppose to build your latex project without installing any dependencies. It is quite big because it simply contains everything there is. Should work out of the box.

It comes in two flavors:

Usage

Simply change into the directory where your main.tex file is located and execute:

docker run -v `pwd`:/data \
       mkunze/texlive-basic:2020.19 \
       pdflatex --admin main.tex

or

docker run -v `pwd`:/data \
       mkunze/texlive-full:2020.19 \
       pdflatex --admin main.tex

Each week a new image is being build. Version number is year.calendarweek.

You can also use it in your gitlab .gitlab-ci.yml pipeline if needed:

job-name:
  stage: stage-name
  image: mkunze/texlive-[basic|full]:2020.19
  script:
    - pdflatex main.tex

About

Providing a texlive docker image in two flavors: basic and full

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages