/texlive-docker

A docker image for the Texlive Latex distribution, so your laptop stays clean of latex installations

Primary LanguageTeX

This Dockerfile produces an image with the TexLive package installed.

You can use this to compile your Latex Documents.

Usage

You can build the Docker image yourself using the following commands:

git clone https://github.com/jonasber/texlive-docker.git
cd texlive-docker
docker build -t tex .

After that, you can start a TexLive Docker container. The Latex source files should be mounted to /doc and the output is also written to that directory. Please provide a makefile in /doc to tell the container what to do. An example can be found in the /exaple directory

docker run -v "$(pwd)/example":"/doc" tex