From 7cb850beb894cc14e4b638d58e76f7efd5ba4fd7 Mon Sep 17 00:00:00 2001 From: dodeeric Date: Wed, 29 Jul 2020 17:47:48 +0200 Subject: [PATCH] readme updated: working directory is now temp --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 059dd4e..0f44a1d 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ A Docker image is vailable on [my DockerHub repository](https://hub.docker.com/r To convert myfile.pdf to myfile.epub, run the following command in the directory where the PDF file is located: ``` -docker run -ti --rm -v `pwd`:/pdf dodeeric/pdf2epubex pdf2epubEX.sh myfile.pdf +docker run -ti --rm -v `pwd`:/temp dodeeric/pdf2epubex pdf2epubEX.sh myfile.pdf ``` The result will be: myfile.epub @@ -49,7 +49,7 @@ You can also use *pdf2htmlEX* with this same Docker image: To convert myfile.pdf to myfile.html, run the following command in the directory where the PDF file is located: ``` -docker run -ti --rm -v `pwd`:/pdf dodeeric/pdf2epubex pdf2htmlEX myfile.pdf +docker run -ti --rm -v `pwd`:/temp dodeeric/pdf2epubex pdf2htmlEX myfile.pdf ``` The result will be: myfile.html @@ -57,7 +57,7 @@ The result will be: myfile.html *pdf2htmlEX* has a lot of parameters. To see them: ``` -docker run -ti --rm -v `pwd`:/pdf dodeeric/pdf2epubex pdf2htmlEX --help +docker run -ti --rm -v `pwd`:/temp dodeeric/pdf2epubex pdf2htmlEX --help ``` ### Prerequisites