From 16791421c7eb9b59428e7628d625f78704b1261d Mon Sep 17 00:00:00 2001 From: Aykhan Shahsuvarov Date: Mon, 9 Dec 2024 02:11:52 +0400 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=93=9A=20Update=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2cbe8e0..043a627 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ dodo -u https://example.com -m GET -d 10 -r 1000 -t 2000 ``` With Docker: ```sh -docker run --rm aykhans/dodo -u https://example.com -m GET -d 10 -r 1000 -t 2000 +docker run --rm -i aykhans/dodo -u https://example.com -m GET -d 10 -r 1000 -t 2000 ``` ### 2. JSON config file @@ -85,7 +85,7 @@ dodo -c /path/config.json ``` With Docker: ```sh -docker run --rm -v ./path/config.json:/dodo/config.json -i aykhans/dodo +docker run --rm -i -v ./path/config.json:/dodo/config.json aykhans/dodo ``` ### 3. Both (CLI & JSON) @@ -96,7 +96,7 @@ dodo -c /path/config.json -u https://example.com -m GET -d 10 -r 1000 -t 2000 ``` With Docker: ```sh -docker run --rm -v ./path/config.json:/dodo/config.json -i aykhans/dodo -u https://example.com -m GET -d 10 -r 1000 -t 2000 +docker run --rm -i -v ./path/config.json:/dodo/config.json aykhans/dodo -u https://example.com -m GET -d 10 -r 1000 -t 2000 ``` ## CLI and JSON Config Parameters From cdaa63152fe145f85da55da73a04af9d334883db Mon Sep 17 00:00:00 2001 From: Aykhan Shahsuvarov Date: Mon, 9 Dec 2024 02:14:08 +0400 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=93=9A=20Update=20docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index 202f0ac..743bec4 100644 --- a/config.json +++ b/config.json @@ -1,7 +1,7 @@ { "method": "GET", "url": "https://example.com", - "no_proxy_check": true, + "no_proxy_check": false, "timeout": 10000, "dodos_count": 50, "request_count": 1000, @@ -19,4 +19,4 @@ "url": "http://example.com:8080" } ] -} \ No newline at end of file +}