Skip to content

Commit

Permalink
修复docker参数问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce.wu committed Sep 6, 2024
1 parent 9b9d7f5 commit f47837a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public ListBoxModel doFillVersionOptionsItems(
baseUrl = StringUtils.removeStart(baseUrl, "http://");
for (int i = resp.getTags().size() - 1; i >= 0; i--) {
String tag = resp.getTags().get(i);
String image = String.format("%s/%s/%s", baseUrl, resp.getName(), tag);
String image = String.format("%s/%s:%s", baseUrl, resp.getName(), tag);
items.add(image, image);
}
} else {
Expand Down

0 comments on commit f47837a

Please sign in to comment.