I am new to Docker and currently working on a project which uses docker for build and deployment. I have installed Docker for windows on my Windows 10 machine and currently running docker in windows environment.
I am using Jenkins for creating the docker image for a project which has Integration tests coded inside it.
I need to create new Job in Jenkins which will take docker image from previous job and run Integration tests on this image and not on the code base. I am not sure if we can do it for Windows. I have searched online but have not found any articles or tutorials which explain how to achieve this.
Can someone help me with this problem or guide me to a solution which i can refer.
Thanks
Vikeng
docker run your-image:version ./gradlew integrationTests
? – gmaslowski