Creating Container Images for Spring Boot Applications: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:
=Overview=
=Overview=
This article describes the steps required to create a Docker container image for a Spring Bool application. It assumes that required steps from [[Writing_a_REST_Service_with_Spring_Boot#Overview|Writing a REST Service with Spring Boot]] have been performed already.
This article describes the steps required to create a Docker container image for a Spring Bool application. It assumes that required steps from [[Writing_a_REST_Service_with_Spring_Boot#Overview|Writing a REST Service with Spring Boot]] have been performed already.
=Quick Test=
A Docker image can be created with:
<syntaxhighlight lang='bash'>
./gradlew bootBuildImage --imageName=ovidiufeodorov/smoke
</syntaxhighlight>


=Organizatorium=
=Organizatorium=

Revision as of 01:53, 8 February 2022

External

Internal

Overview

This article describes the steps required to create a Docker container image for a Spring Bool application. It assumes that required steps from Writing a REST Service with Spring Boot have been performed already.

Quick Test

A Docker image can be created with:

./gradlew bootBuildImage --imageName=ovidiufeodorov/smoke

Organizatorium

./gradlew bootBuildImage --imageName=ovidiufeodorov/smoke