Merge pull request #332 from dzaytsev91/add-docker-compose

adding docker compose
pull/256/head^2
Yahya SayadArbabi 5 years ago committed by GitHub
commit d8290d54ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save