Run maven test project in a docker container and view the test report in an nginx container.
useful commands:
cat Dockerfile && echo
docker build -t test:v1 .
docker images
docker run --rm -v $PWD:/app -v maven-repo:/root/.m2 test:v1
docker run -d -p 80:80 -v $PWD/target/surefire-reports:/usr/share/nginx/html nginx:1.14
docker ps -l # show last-created container