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

create() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  d94ca924_abe2_d862_5c9e_88bc2a2df020["create()"]
  41f5c9ca_7a61_90cb_4750_c29c1a092e1c["DockerApi()"]
  41f5c9ca_7a61_90cb_4750_c29c1a092e1c -->|calls| d94ca924_abe2_d862_5c9e_88bc2a2df020
  c7c5f107_03b8_a5c5_8c9f_496cb0f24756["createContainer()"]
  d94ca924_abe2_d862_5c9e_88bc2a2df020 -->|calls| c7c5f107_03b8_a5c5_8c9f_496cb0f24756
  55a13cc2_4f23_b3f4_4d35_95ecc50b6c03["uploadContainerContent()"]
  d94ca924_abe2_d862_5c9e_88bc2a2df020 -->|calls| 55a13cc2_4f23_b3f4_4d35_95ecc50b6c03
  style d94ca924_abe2_d862_5c9e_88bc2a2df020 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 419–428

		public ContainerReference create(ContainerConfig config, @Nullable ImagePlatform platform,
				ContainerContent... contents) throws IOException {
			Assert.notNull(config, "'config' must not be null");
			Assert.noNullElements(contents, "'contents' must not contain null elements");
			ContainerReference containerReference = createContainer(config, platform);
			for (ContainerContent content : contents) {
				uploadContainerContent(containerReference, content);
			}
			return containerReference;
		}

Subdomains

Called By

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free