removeRemovesContainer() — spring-boot Function Reference
Architecture documentation for the removeRemovesContainer() function in DockerApiTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 6271d061_2c92_01b0_c3ca_5275fc962dfb["removeRemovesContainer()"] 80d1ccf4_f71f_6f0e_4a70_e73d265847bd["removeRemovesContainer()"] 80d1ccf4_f71f_6f0e_4a70_e73d265847bd -->|calls| 6271d061_2c92_01b0_c3ca_5275fc962dfb 80d1ccf4_f71f_6f0e_4a70_e73d265847bd["removeRemovesContainer()"] 6271d061_2c92_01b0_c3ca_5275fc962dfb -->|calls| 80d1ccf4_f71f_6f0e_4a70_e73d265847bd ffedf588_7c32_be87_49b5_6f0bec311aa1["http()"] 6271d061_2c92_01b0_c3ca_5275fc962dfb -->|calls| ffedf588_7c32_be87_49b5_6f0bec311aa1 5ebda6ce_1915_7ec7_82b6_9dbaace8503c["emptyResponse()"] 6271d061_2c92_01b0_c3ca_5275fc962dfb -->|calls| 5ebda6ce_1915_7ec7_82b6_9dbaace8503c style 6271d061_2c92_01b0_c3ca_5275fc962dfb fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/docker/DockerApiTests.java lines 414–423
@Test
void removeRemovesContainer() throws Exception {
ImageReference reference = ImageReference
.of("ubuntu@sha256:6e9f67fa63b0323e9a1e587fd71c561ba48a034504fb804fd26fd8800039835d");
URI removeUri = new URI(IMAGES_URL
+ "/docker.io/library/ubuntu@sha256:6e9f67fa63b0323e9a1e587fd71c561ba48a034504fb804fd26fd8800039835d");
given(http().delete(removeUri)).willReturn(emptyResponse());
this.api.remove(reference, false);
then(http()).should().delete(removeUri);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does removeRemovesContainer() do?
removeRemovesContainer() is a function in the spring-boot codebase.
What does removeRemovesContainer() call?
removeRemovesContainer() calls 3 function(s): emptyResponse, http, removeRemovesContainer.
What calls removeRemovesContainer()?
removeRemovesContainer() is called by 1 function(s): removeRemovesContainer.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free