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

Commit e835c9b

Browse files
committed
FIX Revert setting a name on the containers
1 parent d7aa80a commit e835c9b

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
@@ -158,11 +158,9 @@ private ArgumentListBuilder getlaunchArgs(DockerConfiguration config,
158158
}
159159
String tmpSrc = tmpSrcPath.toAbsolutePath()
160160
.toString();
161-
162-
//TODO Set name? Maybe with build.toString().replaceAll("^\\w", "_")
161+
163162
ArgumentListBuilder args = new ArgumentListBuilder()
164163
.add("run", "-t", "-d")
165-
.add("--name", Utils.resolveVariables(this, "$BUILD_TAG"))
166164
//Add bridge network for internet access
167165
.add("--network", "bridge");
168166
//Add inter-container network if needed

0 commit comments

Comments
 (0)