https://github.com/p3t3r67x0/docker-latex
A Dockerfile for your LaTeX projects based on Ubuntu rolling releases
https://github.com/p3t3r67x0/docker-latex
docker dockerfile latex pandoc ubuntu
Last synced: about 2 months ago
JSON representation
A Dockerfile for your LaTeX projects based on Ubuntu rolling releases
- Host: GitHub
- URL: https://github.com/p3t3r67x0/docker-latex
- Owner: p3t3r67x0
- License: mit
- Created: 2020-05-10T14:46:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-10T20:07:41.000Z (about 6 years ago)
- Last Synced: 2025-10-12T10:29:00.513Z (9 months ago)
- Topics: docker, dockerfile, latex, pandoc, ubuntu
- Language: Dockerfile
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-latex




> 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
```bash
docker pull opendatacoder/latex
```
## Requirements
Add your local user to docker group if this is not yet the case
```bash
sudo usermod -aG docker $(whoami)
```
## Docker Usage
**Quick Setup**
Compile latex sources using docker, run this command
```bash
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.
```bash
docker run -d --rm -i -t -v $PWD:/home/latex/data opendatacoder/latex:latest /bin/bash -c "sleep forever"
```