-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Milestone
Description
The documentation at https://www.testcontainers.org/supported_docker_environment/continuous_integration/dind_patterns/ looks like this:
I assume the issue is that there needs to be an extra newline at https://github.com/testcontainers/testcontainers-java/blob/master/docs/supported_docker_environment/continuous_integration/dind_patterns.md?plain=1#L30
So this:
Where:
* `-v $PWD:$PWD` will add your current directory as a volume inside the container
* `-w $PWD` will set the current directory to this volume
* `-v /var/run/docker.sock:/var/run/docker.sock` will map the Docker socket
becomes:
Where:
* `-v $PWD:$PWD` will add your current directory as a volume inside the container
* `-w $PWD` will set the current directory to this volume
* `-v /var/run/docker.sock:/var/run/docker.sock` will map the Docker socket
