Skip to content
Snippets Groups Projects
Commit 49f402f9 authored by lgeorge's avatar lgeorge Committed by Leon M. Busch-George
Browse files

README: update example call to docker

Newer versions of the container image use the more sensible /workdir
instead of /home.
parent 0dec8c18
No related branches found
No related tags found
1 merge request!1README: newer versions of the container image use the more sensible /workdir instead of /home
......@@ -27,9 +27,9 @@ latexmk -pdf thesis
You can also use a Docker image to compile the LaTeX source:
```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
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment