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
- Host: GitHub
- URL: https://github.com/b-reich/latex-docker
- Owner: b-reich
- Created: 2021-02-01T09:18:41.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-08-15T09:10:41.000Z (10 months ago)
- Last Synced: 2025-08-15T11:18:43.254Z (10 months ago)
- Topics: cd, ci, ci-cd, docker, docker-image, hacktoberfest, latex
- Language: Dockerfile
- Homepage:
- Size: 50.8 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README



# 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"
```