From 018fffdce16fe8168d5924b94ae9efb2b39b7f3d Mon Sep 17 00:00:00 2001 From: CrHackHead Date: Wed, 28 Jan 2026 13:48:01 +0100 Subject: [PATCH] Update Docker run command to set entrypoint and at the end "-m argus" was needed in order to start it --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb46ed5..ca73d2c 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ python -m argus git clone https://github.com/jasonxtn/argus.git cd argus docker build -t argus-recon:latest . -docker run -it --rm -v $(pwd)/results:/app/results argus-recon:latest +docker run -it --rm -v $(pwd)/results:/app/results --entrypoint python argus-recon:latest -m argus ``` ---