Hello,
I am planning to use the baseline scan as below:
1. Start Baseline scan on port say 8090
docker run -v C:/Users/abc/baseline:/zap/wrk/:rw -t owasp/zap2docker-stable zap-baseline.py -t http://example.com/ -r testreport.html -D 600 -P 80902. Start running the automated UI test cases proxied through ZAP on port 8090.
3. After 10 minutes baseline scan will start.
To test if this approach works, I started baseline scan with the command mentioned in #1. I also configured the port 8090 in Firefox in my machine as below

Then I started manually browsing the page
http://example.com. However, I get the below error
I also tried to map the port and then run as below
docker run -v C:/Users/abc/baseline:/zap/wrk/:rw -p 8090:8090 -t owasp/zap2docker-stable zap-baseline.py -t http://example.com/ -r testreport.html -D 600 -P 8090But, issue remains the same.
Can someone please help me to resolve this? What am I doing wrong here?
( Note: Instead of starting the zap container, If I start the ZAP desktop configured on port 8090 then
http://example.com opens up properly.)
Thanks and Regards,
Vicky