Merge pull request #332 from dzaytsev91/add-docker-compose
adding docker compose
This commit is contained in:
commit
d8290d54ff
14
README.md
14
README.md
|
|
@ -1,7 +1,7 @@
|
|||
<p align=center>
|
||||
|
||||
|
||||
<img src="https://user-images.githubusercontent.com/27065646/53551960-ae4dff80-3b3a-11e9-9075-cef786c69364.png"/>
|
||||
|
||||
|
||||
<br>
|
||||
<span>Hunt down social media accounts by username across <a href="https://github.com/theyahya/sherlock/blob/master/sites.md">social networks</a></span>
|
||||
<br>
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
<img src="./images/sherlock_preview.gif"/>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -157,6 +157,14 @@ Or you can simply use "Docker Hub" to run `sherlock`:
|
|||
docker run theyahya/sherlock user123
|
||||
```
|
||||
|
||||
### Using `docker-compose`
|
||||
|
||||
You can also use the `docker-compose.yml` file from the repository and use this command
|
||||
|
||||
```
|
||||
docker-compose run sherlok -o /opt/sherlock/results/text.txt user123
|
||||
```
|
||||
|
||||
## Adding New Sites
|
||||
|
||||
Please look at the Wiki entry on
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
version: '2'
|
||||
services:
|
||||
sherlok:
|
||||
build: .
|
||||
volumes:
|
||||
- "./results:/opt/sherlock/results"
|
||||
Loading…
Reference in New Issue