Skip to content

Commit 9795262

Browse files
committed
Polish
1 parent bcac1e9 commit 9795262

File tree

4 files changed

+21
-11
lines changed

4 files changed

+21
-11
lines changed

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/packaging-oci-image.adoc

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Images can be built using the `bootBuildImage` task.
55
The task is automatically created when the `java` plugin is applied and is an instance of {boot-build-image-javadoc}[`BootBuildImage`].
66

77

8+
89
[[build-image-docker-daemon]]
910
=== Docker daemon
10-
1111
The `bootBuildImage` task requires access to a Docker daemon.
1212
By default, it will communicate with a Docker daemon over a local connection.
1313
This works with https://docs.docker.com/install/[Docker Engine] on all supported platforms without configuration.
@@ -18,13 +18,20 @@ The following table shows the environment variables and their values:
1818
|===
1919
| Environment variable | Description
2020

21-
| DOCKER_HOST | URL containing the host and port for the Docker daemon - e.g. `tcp://192.168.99.100:2376`
22-
| DOCKER_TLS_VERIFY | Enable secure HTTPS protocol when set to `1` (optional)
23-
| DOCKER_CERT_PATH | Path to certificate and key files for HTTPS (required if `DOCKER_TLS_VERIFY=1`, ignored otherwise)
21+
| DOCKER_HOST
22+
| URL containing the host and port for the Docker daemon - e.g. `tcp://192.168.99.100:2376`
23+
24+
| DOCKER_TLS_VERIFY
25+
| Enable secure HTTPS protocol when set to `1` (optional)
26+
27+
| DOCKER_CERT_PATH
28+
| Path to certificate and key files for HTTPS (required if `DOCKER_TLS_VERIFY=1`, ignored otherwise)
2429
|===
2530

2631
On Linux and macOS, these environment variables can be set using the command `eval $(minikube docker-env)` after minikube has been started.
2732

33+
34+
2835
[[build-image-customization]]
2936
=== Image Customizations
3037
The plugin invokes a {buildpacks-reference}/concepts/components/builder/[builder] to orchestrate the generation of an image.

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/docs/asciidoc/packaging-oci-image.adoc

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[[build-image]]
22
== Packaging OCI Images
3-
43
The plugin can create an https://github.com/opencontainers/image-spec[OCI image] using https://buildpacks.io/[Cloud Native Buildpacks].
54
Images can be built using the `build-image` goal.
65

@@ -31,9 +30,9 @@ TIP: While the buildpack runs from an <<repackage,executable archive>>, it is no
3130
When the `build-image` repackages the application, it applies the same settings as the `repackage` goal would, i.e. dependencies can be excluded using one of the exclude options, and Devtools is automatically excluded by default (you can control that using the `excludeDevtools` property).
3231

3332

33+
3434
[[build-image-docker-daemon]]
3535
=== Docker daemon
36-
3736
The `build-image` goal requires access to a Docker daemon.
3837
By default, it will communicate with a Docker daemon over a local connection.
3938
This works with https://docs.docker.com/install/[Docker Engine] on all supported platforms without configuration.
@@ -44,14 +43,20 @@ The following table shows the environment variables and their values:
4443
|===
4544
| Environment variable | Description
4645

47-
| DOCKER_HOST | URL containing the host and port for the Docker daemon - e.g. `tcp://192.168.99.100:2376`
48-
| DOCKER_TLS_VERIFY | Enable secure HTTPS protocol when set to `1` (optional)
49-
| DOCKER_CERT_PATH | Path to certificate and key files for HTTPS (required if `DOCKER_TLS_VERIFY=1`, ignored otherwise)
46+
| DOCKER_HOST
47+
| URL containing the host and port for the Docker daemon - e.g. `tcp://192.168.99.100:2376`
48+
49+
| DOCKER_TLS_VERIFY
50+
| Enable secure HTTPS protocol when set to `1` (optional)
51+
52+
| DOCKER_CERT_PATH
53+
| Path to certificate and key files for HTTPS (required if `DOCKER_TLS_VERIFY=1`, ignored otherwise)
5054
|===
5155

5256
On Linux and macOS, these environment variables can be set using the command `eval $(minikube docker-env)` after minikube has been started.
5357

5458

59+
5560
[[build-image-customization]]
5661
=== Image Customizations
5762
The plugin invokes a {buildpacks-reference}/concepts/components/builder/[builder] to orchestrate the generation of an image.

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-r2dbc-flyway/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@ dependencies {
1818
testImplementation("io.projectreactor:reactor-test")
1919
testImplementation("org.testcontainers:junit-jupiter")
2020
testImplementation("org.testcontainers:postgresql")
21-
2221
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-r2dbc-liquibase/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@ dependencies {
1818
testImplementation("io.projectreactor:reactor-test")
1919
testImplementation("org.testcontainers:junit-jupiter")
2020
testImplementation("org.testcontainers:postgresql")
21-
2221
}

0 commit comments

Comments
 (0)