mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-22 20:03:03 +00:00
Changed a few sentences in Docker Notes.
For better understanding, I changed a few lines in the README.md file.
This commit is contained in:
parent
8a75dcff4b
commit
cefffe0ec9
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
<!-- The ```-v "$PWD/results:/opt/sherlock/results"``` options tell docker to create (or use) the folder `results` in the
|
||||
present working directory and to mount it at `/opt/sherlock/results` on the docker container.
|
||||
The `-o /opt/sherlock/results/text.txt` option tells `sherlock` to output the result.
|
||||
The `-o /opt/sherlock/results/text.txt` option tells `sherlock` to output the result. -->
|
||||
|
||||
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`:
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue