From cefffe0ec9b7ac30bdebb12161c3d2946dd35ce3 Mon Sep 17 00:00:00 2001 From: Suman Paik Date: Tue, 22 Nov 2022 11:18:05 +0530 Subject: [PATCH] Changed a few sentences in Docker Notes. For better understanding, I changed a few lines in the README.md file. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c308929..644186e 100644 --- a/README.md +++ b/README.md @@ -133,9 +133,11 @@ Use the following command to access the saved results: docker run --rm -t -v "$PWD/results:/opt/sherlock/results" mysherlock-image -o /opt/sherlock/results/text.txt user123 ``` -The ```-v "$PWD/results:/opt/sherlock/results"``` options tell docker to create (or use) the folder `results` in the + + +Docker is instructed to create (or use) the folder `results` in the current working directory and to mount it at `/opt/sherlock/results` on the docker container by using the ```-v "$PWD/results:/opt/sherlock/results"``` options. `Sherlock` is instructed to export the result using the `-o /opt/sherlock/results/text.txt` option. Or you can use "Docker Hub" to run `sherlock`: ```