diff --git a/README.md b/README.md index 1b534a5b..edb8352a 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,15 @@ wget -O - https://raw.githubusercontent.com/freelabz/secator/main/scripts/instal Docker ```sh -docker run -it --rm --net=host freelabz/secator --help +docker run -it --rm --net=host freelabz/secator -v "$HOME/.secator:/root/.secator" --help +``` + +The volume mount `-v` is necessary to save all `secator` reports to your host machine. + +You can set up an alias to facilitate running `secator` from Docker: +```sh +alias secator="docker run -it --rm --net=host freelabz/secator -v $HOME/.secator:/root/.secator" +secator --help ```