An open API service indexing awesome lists of open source software.

https://github.com/b-reich/latex-docker


https://github.com/b-reich/latex-docker

cd ci ci-cd docker docker-image hacktoberfest latex

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

![Docker Pulls](https://img.shields.io/docker/pulls/chillfre4k/latex?style=flat-square)
![Docker Image Size (tag)](https://img.shields.io/docker/image-size/chillfre4k/latex/latest?style=flat-square)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/b-reich/latex-docker/ci?style=flat-square)

# Github Docker Registry
I no longer use the Github Docker Registry because the upload timeouts.

# latex-docker
A docker container which provide texlive-full and some other need tools.
You can also use this in your CI/CD.

Feel free to create a Issue or PR.

## Usage
```shell
docker pull docker.io/chillfre4k/latex

exec docker run --rm -i --user="$(id -u):$(id -g)" --net=none -v "$PWD":"/data" chillfre4k/latex pdflatex main.tex
```

## Examples
### Gitlab-CI
```yaml
image: docker.io/chillfre4k/latex:latest

build:
script:
- pdflatex thesis.tex
artifacts:
paths:
- "*.pdf"
```