adding docker compose

This commit is contained in:
Zaytsev Dmitriy
2019-10-02 11:26:55 +03:00
parent 4be5b37543
commit 8236e8bf6e
2 changed files with 17 additions and 3 deletions
+11 -3
View File
@@ -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
+6
View File
@@ -0,0 +1,6 @@
version: '2'
services:
sherlok:
build: .
volumes:
- "./results:/opt/sherlock/results"