This docker file helps you to run Web Tours application in Windows container. Web Tours is the sample application to learn Micro Focus LoadRunner Professional.
Before you begin building this image, you must download Web Tours application from Micro Focus Marketplace.
- Download only the WebTours.zip file
- Docker for Windows
DO NOT download the Strawberry Perl installation package.
- Clone this repository
- Place the downloaded WebTours.zip inside the repository
- Launch powershell or cmd prompt to build this image
You must build this image to run Web Tours application. This image is not available in Docker Hub.
docker build -t webtours-demo .
Once the image is built, you can issue below command to run the docker container.
docker run -d -p 1080:1080 webtours-demo
Issue the below command to check the running container.
docker ps
By default Web Tours opens 1080 port in the container. Open your browser and launch http://127.0.0.1:1080/WebTours/.
Issue the below command to stop the container.
docker stop <container-id>