adding docker compose

pull/332/head
Zaytsev Dmitriy 5 years ago
parent 4be5b37543
commit 8236e8bf6e

@ -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