From 68182797517df49a62258a94d8084c1e22d74b9a Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Thu, 6 Feb 2020 21:08:42 +0900 Subject: [PATCH] Fix typo See gh-20049 --- .../src/docs/asciidoc/spring-boot-features.adoc | 2 +- .../spring-boot-gradle-plugin/src/docs/asciidoc/index.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc index 21a26feae6..71a1484fc5 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc @@ -7717,7 +7717,7 @@ Spring Boot applications can be containerized by packaging them into Docker imag A typical Spring Boot fat jar can be converted into a Docker image by adding just a few lines to a Dockerfile that can be used to build the image. However, there are various downsides to copying and running the fat jar as is in the docker image. There’s always a certain amount of overhead when running a fat jar without unpacking it, and in a containerized environment this can be noticeable. -The other issue is that putting your application's code and all it's dependencies in one layer in the Docker image is sub-optimal. +The other issue is that putting your application's code and all its dependencies in one layer in the Docker image is sub-optimal. Since you probably recompile your code more often than you upgrade the version of Spring Boot you use, it’s often better to separate things a bit more. If you put jar files in the layer before your application classes, Docker often only needs to change the very bottom layer and can pick others up from its cache. diff --git a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/index.adoc b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/index.adoc index 7e8782676d..0fca37925f 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/index.adoc +++ b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/index.adoc @@ -26,7 +26,7 @@ Andy Wilkinson, Scott Frederick :api-documentation: {spring-boot-docs}/gradle-plugin/api :spring-boot-reference: {spring-boot-docs}/reference/htmlsingle :spring-boot-api: {spring-boot-docs}/api/org/springframework/boot -:version-properties-appendix: {spring-boot-reference}/#dependency-versions-coordinates +:version-properties-appendix: {spring-boot-reference}/#dependency-versions-properties :build-info-javadoc: {api-documentation}/org/springframework/boot/gradle/tasks/buildinfo/BuildInfo.html :boot-build-image-javadoc: {api-documentation}/org/springframework/boot/gradle/tasks/bundling/BootBuildImage.html :boot-jar-javadoc: {api-documentation}/org/springframework/boot/gradle/tasks/bundling/BootJar.html