From 49f402f9c0d364de7cc247a288762878ed907016 Mon Sep 17 00:00:00 2001
From: lgeorge <lgeorge@mi.fu-berlin.de>
Date: Sat, 8 Apr 2023 00:05:20 +0000
Subject: [PATCH] README: update example call to docker

Newer versions of the container image use the more sensible /workdir
instead of /home.
---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 30fa507..26a8d1d 100644
--- a/README.md
+++ b/README.md
@@ -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
+ 
-- 
GitLab