Skip to content

Commit

Permalink
revert ci
Browse files Browse the repository at this point in the history
  • Loading branch information
GOODBOY008 committed Sep 20, 2023
1 parent 9eaf6fc commit b7325f9
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,17 @@ public void after() {
public static void afterClass() {
// Cleanup the db2 image, because it's too large and will cause the next test to fail.
db2Container.getDockerClient().removeImageCmd(DB2_CUSTOM_IMAGE).exec();
db2Container.getDockerClient().removeImageCmd(DB2_IMAGE).exec();
db2Container
.getDockerClient()
.listImagesCmd()
.withImageNameFilter(DB2_IMAGE)
.exec()
.forEach(
image ->
db2Container
.getDockerClient()
.removeImageCmd(image.getId())
.exec());
}

@Test
Expand Down

0 comments on commit b7325f9

Please sign in to comment.