I am running a Jenkins cluster where in the Master and Slave, both are running as a Docker containers.
The Host is latest boot2docker VM running on MacOS.
T
I have same problem in Gitlab CI, I solved this by using docker cp to do something like mount
docker cp
script: - docker run --name ${CONTAINER_NAME} ${API_TEST_IMAGE_NAME} after_script: - docker cp ${CONTAINER_NAME}:/code/newman ./ - docker rm ${CONTAINER_NAME}