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

uploadContainerContent() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  55a13cc2_4f23_b3f4_4d35_95ecc50b6c03["uploadContainerContent()"]
  d94ca924_abe2_d862_5c9e_88bc2a2df020["create()"]
  d94ca924_abe2_d862_5c9e_88bc2a2df020 -->|calls| 55a13cc2_4f23_b3f4_4d35_95ecc50b6c03
  d1757773_1e32_5f99_15ef_5bbc9a9d8dd2["buildUrl()"]
  55a13cc2_4f23_b3f4_4d35_95ecc50b6c03 -->|calls| d1757773_1e32_5f99_15ef_5bbc9a9d8dd2
  fe17330d_1d3c_c6fb_1bd5_6cb12e48b7be["http()"]
  55a13cc2_4f23_b3f4_4d35_95ecc50b6c03 -->|calls| fe17330d_1d3c_c6fb_1bd5_6cb12e48b7be
  style 55a13cc2_4f23_b3f4_4d35_95ecc50b6c03 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 441–444

		private void uploadContainerContent(ContainerReference reference, ContainerContent content) throws IOException {
			URI uri = buildUrl("/containers/" + reference + "/archive", "path", content.getDestinationPath());
			http().put(uri, "application/x-tar", content.getArchive()::writeTo).close();
		}

Subdomains

Called By

Frequently Asked Questions

What does uploadContainerContent() do?
uploadContainerContent() is a function in the spring-boot codebase.
What does uploadContainerContent() call?
uploadContainerContent() calls 2 function(s): buildUrl, http.
What calls uploadContainerContent()?
uploadContainerContent() is called by 1 function(s): create.

Analyze Your Own Codebase

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

Try Supermodel Free