mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
12 lines
192 B
Bash
Executable File
12 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FORMAT=$1; shift
|
|
|
|
docker run \
|
|
--workdir "/var/texlive/latex" \
|
|
--user "$UID:$GID" \
|
|
--net=none \
|
|
-v $(pwd):/var/texlive \
|
|
blang/latex:ubuntu \
|
|
lualatex "$FORMAT.tex"
|