removeImages() — spring-boot Function Reference
Architecture documentation for the removeImages() function in BootBuildImageIntegrationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 59ffb962_26a5_d14b_c297_e84d0815a53a["removeImages()"] f76834a2_f6a8_57e0_bbb7_05adc3fd3e16["buildsImageWithDefaultBuilder()"] f76834a2_f6a8_57e0_bbb7_05adc3fd3e16 -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a 7bc9c885_8b03_be0b_ebb0_984160122086["buildsImageWithTrustBuilder()"] 7bc9c885_8b03_be0b_ebb0_984160122086 -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a f33a2be5_cfe6_a6a5_a3c4_4da4d8dc484a["buildsImageWithWarPackaging()"] f33a2be5_cfe6_a6a5_a3c4_4da4d8dc484a -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a f68efe3e_fcd9_a73c_7a43_61e75d2cfb1e["buildsImageWithWarPackagingAndJarConfiguration()"] f68efe3e_fcd9_a73c_7a43_61e75d2cfb1e -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a 2419060f_7625_2c19_b30f_7c9ad0f79d04["buildsImageWithCustomName()"] 2419060f_7625_2c19_b30f_7c9ad0f79d04 -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a 6aef7cb7_4392_437d_4726_ab3c46124455["buildsImageWithCustomBuilderAndRunImage()"] 6aef7cb7_4392_437d_4726_ab3c46124455 -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a f5dda5d1_e20e_34d7_f2be_0e1de612579e["buildsImageWithCommandLineOptions()"] f5dda5d1_e20e_34d7_f2be_0e1de612579e -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a 0af8c591_6b98_4196_747c_7d4c5d984a4f["buildsImageWithPullPolicy()"] 0af8c591_6b98_4196_747c_7d4c5d984a4f -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a d7edc2cb_45a7_bb69_2475_85cbc75d8407["buildsImageWithBuildpackFromBuilder()"] d7edc2cb_45a7_bb69_2475_85cbc75d8407 -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a 08c15059_8d06_deba_60d1_38fc914b7eac["buildsImageWithBuildpackFromDirectory()"] 08c15059_8d06_deba_60d1_38fc914b7eac -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a 606662c0_6bc0_19e8_fd7a_55751c6386f3["buildsImageWithBuildpackFromTarGzip()"] 606662c0_6bc0_19e8_fd7a_55751c6386f3 -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a b50b80c8_faff_481a_7204_0362af352b9f["buildsImageWithBuildpacksFromImages()"] b50b80c8_faff_481a_7204_0362af352b9f -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a b758812c_0e2e_2c75_ad06_b9167981e138["buildsImageWithBinding()"] b758812c_0e2e_2c75_ad06_b9167981e138 -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a 0fd4fc95_a04e_78c7_8433_2908e613bffa["buildsImageWithTag()"] 0fd4fc95_a04e_78c7_8433_2908e613bffa -->|calls| 59ffb962_26a5_d14b_c297_e84d0815a53a style 59ffb962_26a5_d14b_c297_e84d0815a53a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/dockerTest/java/org/springframework/boot/gradle/tasks/bundling/BootBuildImageIntegrationTests.java lines 708–718
private void removeImages(String... names) throws IOException {
ImageApi imageApi = new DockerApi().image();
for (String name : names) {
try {
imageApi.remove(ImageReference.of(name), false);
}
catch (DockerEngineException ex) {
// ignore image remove failures
}
}
}
Domain
Subdomains
Called By
- buildsImageOnLinuxArmWithImagePlatformLinuxArm()
- buildsImageWithApplicationDirectory()
- buildsImageWithBindCaches()
- buildsImageWithBinding()
- buildsImageWithBuildpackFromBuilder()
- buildsImageWithBuildpackFromDirectory()
- buildsImageWithBuildpackFromTarGzip()
- buildsImageWithBuildpacksFromImages()
- buildsImageWithCommandLineOptions()
- buildsImageWithCreatedDate()
- buildsImageWithCurrentCreatedDate()
- buildsImageWithCustomBuilderAndRunImage()
- buildsImageWithCustomName()
- buildsImageWithDefaultBuilder()
- buildsImageWithEmptySecurityOptions()
- buildsImageWithMultipleCommandLineEnvironments()
- buildsImageWithNetworkModeNone()
- buildsImageWithPullPolicy()
- buildsImageWithTag()
- buildsImageWithTrustBuilder()
- buildsImageWithVolumeCaches()
- buildsImageWithWarPackaging()
- buildsImageWithWarPackagingAndJarConfiguration()
- failsWhenBuildingOnLinuxAmdWithImagePlatformLinuxArm()
Source
Frequently Asked Questions
What does removeImages() do?
removeImages() is a function in the spring-boot codebase.
What does removeImages() call?
removeImages() calls 4 function(s): DockerApi, image, of, remove.
What calls removeImages()?
removeImages() is called by 24 function(s): buildsImageOnLinuxArmWithImagePlatformLinuxArm, buildsImageWithApplicationDirectory, buildsImageWithBindCaches, buildsImageWithBinding, buildsImageWithBuildpackFromBuilder, buildsImageWithBuildpackFromDirectory, buildsImageWithBuildpackFromTarGzip, buildsImageWithBuildpacksFromImages, and 16 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free