We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
compose.oneoff
1 parent 3abe4c7 commit fd8260cCopy full SHA for fd8260c
1 file changed
java/src/org/openqa/selenium/grid/node/docker/DockerSessionFactory.java
@@ -142,6 +142,8 @@ public DockerSessionFactory(
142
this.hostConfig = Require.nonNull("Container host config", hostConfig);
143
this.hostConfigKeys = Require.nonNull("Browser container host config keys", hostConfigKeys);
144
this.composeLabels = Require.nonNull("Docker Compose labels", composeLabels);
145
+ // Merge compose labels with oneoff=False to prevent triggering --exit-code-from dynamic grid
146
+ this.composeLabels.put("com.docker.compose.oneoff", "False");
147
}
148
149
@Override
0 commit comments