Home / Function/ remove() — spring-boot Function Reference

remove() — spring-boot Function Reference

Architecture documentation for the remove() function in DockerApi.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  e06ce851_18c5_fa12_ce9e_f2cd6d064b8d["remove()"]
  c1797a5b_a947_5358_cfc9_580572da66c4["remove()"]
  c1797a5b_a947_5358_cfc9_580572da66c4 -->|calls| e06ce851_18c5_fa12_ce9e_f2cd6d064b8d
  59ffb962_26a5_d14b_c297_e84d0815a53a["removeImages()"]
  59ffb962_26a5_d14b_c297_e84d0815a53a -->|calls| e06ce851_18c5_fa12_ce9e_f2cd6d064b8d
  668a2455_7dd6_b80c_9199_f482779ac759["buildsImageAndPublishesToRegistry()"]
  668a2455_7dd6_b80c_9199_f482779ac759 -->|calls| e06ce851_18c5_fa12_ce9e_f2cd6d064b8d
  d2a21545_70d3_0273_09ac_245a3da45a20["whenBuildImageIsInvokedWithPublish()"]
  d2a21545_70d3_0273_09ac_245a3da45a20 -->|calls| e06ce851_18c5_fa12_ce9e_f2cd6d064b8d
  1f5de288_4054_671a_09ef_4241b1ba9474["removeImages()"]
  1f5de288_4054_671a_09ef_4241b1ba9474 -->|calls| e06ce851_18c5_fa12_ce9e_f2cd6d064b8d
  1c432d58_16ca_1503_d046_4cba5114e02b["removeImage()"]
  1c432d58_16ca_1503_d046_4cba5114e02b -->|calls| e06ce851_18c5_fa12_ce9e_f2cd6d064b8d
  c1797a5b_a947_5358_cfc9_580572da66c4["remove()"]
  e06ce851_18c5_fa12_ce9e_f2cd6d064b8d -->|calls| c1797a5b_a947_5358_cfc9_580572da66c4
  d1757773_1e32_5f99_15ef_5bbc9a9d8dd2["buildUrl()"]
  e06ce851_18c5_fa12_ce9e_f2cd6d064b8d -->|calls| d1757773_1e32_5f99_15ef_5bbc9a9d8dd2
  fe17330d_1d3c_c6fb_1bd5_6cb12e48b7be["http()"]
  e06ce851_18c5_fa12_ce9e_f2cd6d064b8d -->|calls| fe17330d_1d3c_c6fb_1bd5_6cb12e48b7be
  style e06ce851_18c5_fa12_ce9e_f2cd6d064b8d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/DockerApi.java lines 353–358

		public void remove(ImageReference reference, boolean force) throws IOException {
			Assert.notNull(reference, "'reference' must not be null");
			Collection<String> params = force ? FORCE_PARAMS : Collections.emptySet();
			URI uri = buildUrl("/images/" + reference, params);
			http().delete(uri).close();
		}

Subdomains

Frequently Asked Questions

What does remove() do?
remove() is a function in the spring-boot codebase.
What does remove() call?
remove() calls 3 function(s): buildUrl, http, remove.
What calls remove()?
remove() is called by 6 function(s): buildsImageAndPublishesToRegistry, remove, removeImage, removeImages, removeImages, whenBuildImageIsInvokedWithPublish.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free