asDockerConfiguration() — spring-boot Function Reference
Architecture documentation for the asDockerConfiguration() function in Docker.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD e87c0f39_adde_809e_8b60_8aacee2612b6["asDockerConfiguration()"] bf20e2b0_e797_6471_b546_9f8958dd3c17["customizeHost()"] e87c0f39_adde_809e_8b60_8aacee2612b6 -->|calls| bf20e2b0_e797_6471_b546_9f8958dd3c17 6f473397_5757_3351_9453_1c46a45e03a7["customizeBuilderAuthentication()"] e87c0f39_adde_809e_8b60_8aacee2612b6 -->|calls| 6f473397_5757_3351_9453_1c46a45e03a7 89d984ed_95a2_2b3e_a602_c274da4b4958["customizePublishAuthentication()"] e87c0f39_adde_809e_8b60_8aacee2612b6 -->|calls| 89d984ed_95a2_2b3e_a602_c274da4b4958 style e87c0f39_adde_809e_8b60_8aacee2612b6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/Docker.java lines 152–159
BuilderDockerConfiguration asDockerConfiguration(Log log, boolean publish) {
BuilderDockerConfiguration dockerConfiguration = new BuilderDockerConfiguration();
dockerConfiguration = customizeHost(dockerConfiguration);
dockerConfiguration = dockerConfiguration.withBindHostToBuilder(this.bindHostToBuilder);
dockerConfiguration = customizeBuilderAuthentication(log, dockerConfiguration);
dockerConfiguration = customizePublishAuthentication(log, dockerConfiguration, publish);
return dockerConfiguration;
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does asDockerConfiguration() do?
asDockerConfiguration() is a function in the spring-boot codebase.
What does asDockerConfiguration() call?
asDockerConfiguration() calls 3 function(s): customizeBuilderAuthentication, customizeHost, customizePublishAuthentication.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free