Skip to content

Commit

Permalink
change dockerhub group for publishing jeka image
Browse files Browse the repository at this point in the history
  • Loading branch information
djeang committed Sep 18, 2024
1 parent e49b0b1 commit 7e50b29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev.jeka.core/jeka-src/dev/jeka/core/DockerImageMaker.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

public class DockerImageMaker {

public static final String GROUP = "djeang";
public static final String GROUP = "jekadev";

public static final String IMAGE_NAME = GROUP + "/jeka";

Expand Down Expand Up @@ -65,7 +65,7 @@ public static void pushImage(String version, String password) {
if (!JkVersion.of(version).isSnapshot()) {
String imageNameWithLatest= IMAGE_NAME + ":latest";
JkDocker.exec("image", "tag", IMAGE_NAME, imageNameWithLatest);
JkDocker.exec("push", imageNameWithVersion);
JkDocker.exec("push", imageNameWithLatest);
}
JkDocker.exec("logout");
}
Expand Down

0 comments on commit 7e50b29

Please sign in to comment.