I am trying to trigger Neoload Test through Azure Devops Pipeline, below is what I have tried so far
- Added "Docker CLI installer" task to the pipeline
- Added command line task with below code
docker run --rm \
-v "https://sample.azure.com/sample/Team%20-%20NFT/_git/Team%20-%20NFT ":Neoload_POC.nlp \
-e SCENARIO_NAME=scenario1 \
-e NEOLOADWEB_TOKEN=1PNvUSm4uzWewmCQwo1S \
-e TEST_NAME=Neoload_POC \
-e CONTROLLER_ZONE_ID=lg01.sample.com:7100 \
-e LG_ZONE_IDS=<lg01.sample.com:7100>:<1> \
Docker installer successful ran and installed docker, but command line task returning with below error
docker: invalid reference format.
See 'docker run --help'.
'-v' is not recognized as an internal or external command,
operable program or batch file.
'-e' is not recognized as an internal or external command,
operable program or batch file.
Any help is really appreciated