Sign inSign up

opendatacoder/latex

By opendatacoder

Updated over 6 years ago

A LaTeX docker image for your projects based on Ubuntu rolling releases.

Image
0

93

opendatacoder/latex repository overview

docker-latex

mit license docker build docker pulls docker version

A Dockerfile for your LaTeX projects based on Ubuntu rolling releases

This image helps compiling latex sources without the need to install all latex packages on your system.

Why should I use this container?

  • Easy setup, compile immediately after image download

Docker Hub

Make use of the pre build docker image

docker pull opendatacoder/latex

Requirements

Add your local user to docker group if this is not yet the case

sudo usermod -aG docker $(whoami)

Docker Usage

Quick Setup

Compile latex sources using docker, run this command

docker run --rm -i -v $PWD:/home/latex/data opendatacoder/latex:latest pdflatex main.tex

Daemon setup

If you're working on source in latex, you might want to compile it multiple times and don't want to start a container each time.

docker run -d --rm -i -t -v $PWD:/home/latex/data opendatacoder/latex:latest /bin/bash -c "sleep forever"

Tag summary

Content type

Image

Digest

Size

1.9 GB

Last updated

over 6 years ago

docker pull opendatacoder/latex