Skip to content
This repository was archived by the owner on Jan 17, 2024. It is now read-only.

Commit 3c83e42

Browse files
authored
Merge pull request #26 from raydouglass/revert-name
[REVIEW] Revert setting a name on the containers
2 parents 60c669b + e835c9b commit 3c83e42

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/com/gpuopenanalytics/jenkins/remotedocker/DockerLauncher.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,9 @@ private ArgumentListBuilder getlaunchArgs(DockerConfiguration config,
165165
}
166166
String tmpSrc = tmpSrcPath.toAbsolutePath()
167167
.toString();
168-
169-
//TODO Set name? Maybe with build.toString().replaceAll("^\\w", "_")
168+
170169
ArgumentListBuilder args = new ArgumentListBuilder()
171170
.add("run", "-t", "-d")
172-
.add("--name", Utils.resolveVariables(this, "$BUILD_TAG"))
173171
//Add bridge network for internet access
174172
.add("--network", "bridge");
175173
//Add inter-container network if needed

0 commit comments

Comments
 (0)