dotTEST can be deployed in a Docker container to enable seamless integration with modern development workflows and CI/CD pipelines.
You can download a ready to use dotTEST container image from Docker Hub: https://hub.docker.com/r/parasoft/dottest. The container image includes dotTEST, build tools and common utilities. See the documentation at Docker Hub for deployment and customization instructions.
It is recommended to use dotTEST container image from Docker Hub: https://hub.docker.com/r/parasoft/dottest. Follow the steps below if you need to build a custom Docker container image, for example, if you have your own container base image. |
To build a Docker container image that includes dotTEST:
<INSTALL_DIR>\integration\docker\Dockerfile
to specify the tools you want to include in the container image.<INSTALL_DIR>\integration\docker
directory.Add the license settings and other configuration settings to the 'dottestcli.properties' file.
You must configure a network license to run dotTEST in a Docker container. The local license is not supported. See Setting the License for details. |
<INSTALL_DIR>\integration\docker
directory.Run the following command in the <INSTALL_DIR>\integration\docker
directory to build the image:
docker build --rm -t dottest:latest . |
The image will include runnable dotTEST and other tools you specified in the Dockerfile.
Once you built the Docker container image that includes dotTEST, you can utilize all of dotTEST's capabilities available from the command line interface:
docker run --rm dottest:latest dottestcli -help |
See the documentation at Docker Hub for further dotTEST deployment and customization instructions: https://hub.docker.com/r/parasoft/dottest.
See the documentation for Dockerfile: https://docs.docker.com/engine/reference/builder/.