Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@
1. [Download and install](https://www.docker.com/products/docker-desktop/) Docker Desktop.


2. Open this [pre-initialized project](https://start.spring.io/#!type=maven-project&language=java&platformVersion=3.4.0-M3&packaging=jar&jvmVersion=21&groupId=com.example&artifactId=spring-boot-docker&name=spring-boot-docker&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.spring-boot-docker&dependencies=web) to generate a ZIP file. Here’s how that looks:
2. Open this [pre-initialized project](https://start.spring.io/#!type=maven-project&language=java&platformVersion=3.4.11&packaging=jar&jvmVersion=21&groupId=com.example&artifactId=spring-boot-docker&name=spring-boot-docker&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.spring-boot-docker&dependencies=web) to generate a ZIP file.

> **Note:** The Spring Boot version in this example (`3.4.11`) may differ in the future as newer versions are released. Spring Initializr will automatically select the latest compatible version if the specified one is unavailable.

Check failure on line 63 in content/get-started/docker-concepts/building-images/multi-stage-builds.md

View workflow job for this annotation

GitHub Actions / validate (vale)

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'Initializr'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'Initializr'?", "location": {"path": "content/get-started/docker-concepts/building-images/multi-stage-builds.md", "range": {"start": {"line": 63, "column": 128}}}, "severity": "ERROR"}

![A screenshot of Spring Initializr tool selected with Java 21, Spring Web and Spring Boot 3.4.0](images/multi-stage-builds-spring-initializer.webp?border=true)

Expand Down
1 change: 1 addition & 0 deletions content/manuals/build/exporters/oci-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ The following table describes the available parameters:
| `force-compression` | `true`,`false` | `false` | Forcefully apply compression, see [compression][1] |
| `oci-mediatypes` | `true`,`false` | | Use OCI media types in exporter manifests. Defaults to `true` for `type=oci`, and `false` for `type=docker`. See [OCI Media types][2] |
| `annotation.<key>` | String | | Attach an annotation with the respective `key` and `value` to the built image,see [annotations][3] |
| `rewrite-timestamp` | `true`,`false` | `false` | Normalize timestamps in the exported image based on the `SOURCE_DATE_EPOCH` value. Supported for both `image` and `docker` exporters. |

[1]: _index.md#compression
[2]: _index.md#oci-media-types
Expand Down
Loading