docker run -it findomain -t example.com
Configuration Notes:
- Pass your config to the container by bind mounting to
/opt/findomain
with the flag-v
,
ie.-v $(pwd):/opt/findomain
- Results saved with
-o
will be saved to/opt/findomain
inside the container and consequently through the bind mount to your local host. This way the results will persist on your machine even if the container is only temporary.
docker run --rm -it -v $(pwd):/opt/findomain findomain -c config.toml -t example.com
- Pull the image
docker pull edu4rdshl/findomain
- Run Findomain
docker run edu4rdshl/findomain
- Clone the repo
git clone https://github.com/Findomain/Findomain
- Build the image
cd Findomain/docker
docker build . -t findomain
- Run it as usual
docker run -it findomain