deleteVolumes() — spring-boot Function Reference
Architecture documentation for the deleteVolumes() function in BuildImageTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 796bdd2a_3a15_ecc2_97ae_dd72ce1ed61b["deleteVolumes()"] e4189750_0b64_43dd_cae0_224ebfe7f3e2["whenBuildImageIsInvokedWithVolumeCaches()"] e4189750_0b64_43dd_cae0_224ebfe7f3e2 -->|calls| 796bdd2a_3a15_ecc2_97ae_dd72ce1ed61b 41f5c9ca_7a61_90cb_4750_c29c1a092e1c["DockerApi()"] 796bdd2a_3a15_ecc2_97ae_dd72ce1ed61b -->|calls| 41f5c9ca_7a61_90cb_4750_c29c1a092e1c 48b35501_4dce_9439_5fe1_b191f15ebde4["volume()"] 796bdd2a_3a15_ecc2_97ae_dd72ce1ed61b -->|calls| 48b35501_4dce_9439_5fe1_b191f15ebde4 cf1ac3fd_e688_8452_d6a0_046a45830184["of()"] 796bdd2a_3a15_ecc2_97ae_dd72ce1ed61b -->|calls| cf1ac3fd_e688_8452_d6a0_046a45830184 style 796bdd2a_3a15_ecc2_97ae_dd72ce1ed61b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/dockerTest/java/org/springframework/boot/maven/BuildImageTests.java lines 661–666
private void deleteVolumes(String... names) throws IOException {
VolumeApi volumeApi = new DockerApi().volume();
for (String name : names) {
volumeApi.delete(VolumeName.of(name), false);
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does deleteVolumes() do?
deleteVolumes() is a function in the spring-boot codebase.
What does deleteVolumes() call?
deleteVolumes() calls 3 function(s): DockerApi, of, volume.
What calls deleteVolumes()?
deleteVolumes() is called by 1 function(s): whenBuildImageIsInvokedWithVolumeCaches.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free