Skip to content
Snippets Groups Projects

README: newer versions of the container image use the more sensible /workdir instead of /home

Merged lgeorge requested to merge lgeorge/thesis-template:lgeorge-main-patch-72504 into main
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
+ 3
3
@@ -27,9 +27,9 @@ latexmk -pdf thesis
@@ -27,9 +27,9 @@ latexmk -pdf thesis
You can also use a Docker image to compile the LaTeX source:
You can also use a Docker image to compile the LaTeX source:
```bash
```bash
docker run --rm -it -v $(pwd):/home danteev/texlive latexmk -pdf thesis.tex
docker run --rm -it -v $(pwd):/workdir danteev/texlive latexmk -pdf thesis.tex
# For continuous builds
# For continuous builds
docker run --rm -it -v $(pwd):/home danteev/texlive latexmk -pdf -pvc thesis.tex
docker run --rm -it -v $(pwd):/workdir danteev/texlive latexmk -pdf -pvc thesis.tex
```
```
\ No newline at end of file
Loading