Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -330,11 +330,11 @@ public void testAncestorFilter() throws Exception {
DockerAssume.assumeNotSwarm(dockerRule.getClient());

dockerRule.getClient().pullImageCmd("busybox")
.withTag("1.24")
.withTag("1.35")
.start()
.awaitCompletion();

dockerRule.getClient().createContainerCmd("busybox:1.24")
dockerRule.getClient().createContainerCmd("busybox:1.35")
.withLabels(testLabel)
.exec();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void testPullImage() throws Exception {
// pulled down, preferably small in size. If tag is not used pull will
// download all images in that repository but tmpImgs will only
// deleted 'latest' image but not images with other tags
String testImage = "hackmann/empty";
String testImage = "alpine:3.17";

LOG.info("Removing image: {}", testImage);

Expand Down