Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/sherlock/commit/d8290d54ffd30fbc0220ccc86ee53f702182d484
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
17 additions and
3 deletions
@ -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"