In this section, we will create a Docker image for our performance testing (PT). This Docker image will be used by Jenkins to create Docker containers, wherein we will deploy our built solution and execute our performance tests. Follow the given steps:
- Log in to your Docker server. Give the following command to check the available Docker images:
sudo docker images
- From the following screenshot, you can see I have three Docker images (ubuntu, hello-world, and maven-build-slave-0.1) already on my Docker server:
- We will build a new Docker image for running our PT using ...