We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4224eb commit 03aa6a1Copy full SHA for 03aa6a1
1 file changed
core/src/main/java/org/testcontainers/containers/DockerMcpGatewayContainer.java
@@ -42,7 +42,7 @@ public DockerMcpGatewayContainer(DockerImageName dockerImageName) {
42
super(dockerImageName);
43
dockerImageName.assertCompatibleWith(DEFAULT_IMAGE_NAME);
44
withExposedPorts(DEFAULT_PORT);
45
- withEnv("DOCKER_HOST", "unix:///var/run/docker.sock");
+ // withEnv("DOCKER_HOST", "unix:///var/run/docker.sock");
46
withEnv("HOME", "/tmp");
47
withFileSystemBind(DockerClientFactory.instance().getRemoteDockerUnixSocketPath(), "/var/run/docker.sock");
48
waitingFor(Wait.forLogMessage(".*Start sse server on port.*", 1));
0 commit comments