Update docker instructions

This commit is contained in:
Julius Freudenberger 2025-02-25 21:48:29 +02:00
parent 0ed875d937
commit 27819965ea
4 changed files with 6 additions and 17 deletions

View file

@ -1,6 +1,10 @@
# Docker setup for LaTeX
To use the docker setup create the container using Docker Compose.
LaTeX can also be used in a Container.
This example uses the `texlive` image.
The source files have to reside in a subfolder called `data`.
The batch or shell script provide an example on how to compile the document.
To compile the document use the following command:
```bash
docker run --rm -t -v ./data:/latex -w /latex texlive/texlive pdflatex file.tex
```

View file

@ -1,8 +0,0 @@
version: "3"
services:
texlive:
image: texlive/texlive
volumes:
- ./data/:/latex
working_dir: /latex
tty: true

View file

@ -1,3 +0,0 @@
docker-compose up -d
docker-compose exec texlive pdflatex file.tex
docker-compose down

View file

@ -1,4 +0,0 @@
#!/usr/bin/env sh
docker-compose up -d
docker-compose exec texlive pdflatex file.tex
docker-compose down