This guide walks you through the process of building a Docker image for running a Spring Boot application. We start with a basic Dockerfile
and make a few tweaks. Then we show a couple of options that use build plugins (for Maven and Gradle) instead of docker
. This is a “getting started” guide, so the scope is limited to a few basic needs. If you are building container images for production use, there are many things to consider, and it is not possible to cover them all in a short guide.
Note
|
There is also a Topical Guide on Docker, which covers a wider range of choices that we have here and in much more detail. |
Docker is a Linux container management toolkit with a “social” aspect, letting users publish container images and consume those published by others. A Docker image is a recipe for running a containerized process. In this guide, we build one for a simple Spring boot application.
If you are NOT using a Linux machine, you need a virtualized server. If you install VirtualBox, other tools like the Mac’s boot2docker
can seamlessly manage it for you. Visit VirtualBox’s download site and pick the version for your machine. Download and install. Do not worry about actually running it.
You also need Docker, which only runs on 64-bit machines. See https://docs.docker.com/installation/#installation for details on setting Docker up for your machine. Before proceeding further, verify you can run docker
commands from the shell. If you use boot2docker
, you need to run that first.
You can use this pre-initialized project and click Generate to download a ZIP file. This project is configured to fit the examples in this tutorial.
To manually initialize the project:
-
Navigate to https://start.spring.io. This service pulls in all the dependencies you need for an application and does most of the setup for you.
-
Choose either Gradle or Maven and the language you want to use. This guide assumes that you chose Java.
-
Click Dependencies and select Spring Web.
-
Click Generate.
-
Download the resulting ZIP file, which is an archive of a web application that is configured with your choices.
Note
|
If your IDE has the Spring Initializr integration, you can complete this process from your IDE. |
Note
|
You can also fork the project from Github and open it in your IDE or other editor. |
Now you can create a simple application:
src/main/java/hello/Application.java
link:complete/src/main/java/hello/Application.java[role=include]
The class is flagged as a @SpringBootApplication
and as a @RestController
, meaning that it is ready for use by Spring MVC to handle web requests. @RequestMapping
maps /
to the home()
method, which sends a Hello World
response. The main()
method uses Spring Boot’s SpringApplication.run()
method to launch an application.
Now we can run the application without the Docker container (that is, in the host OS):
If you use Gradle, run the following command:
./gradlew build && java -jar build/libs/gs-spring-boot-docker-0.1.0.jar
If you use Maven, run the following command:
./mvnw package && java -jar target/gs-spring-boot-docker-0.1.0.jar
Then go to localhost:8080 to see your “Hello Docker World” message.
Docker has a simple "Dockerfile" file format that it uses to specify the “layers” of an image. Create the following Dockerfile in your Spring Boot project:
FROM openjdk:8-jdk-alpine
ARG JAR_FILE=target/*.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","/app.jar"]
If you use Gradle, you can run it with the following command:
docker build --build-arg JAR_FILE=build/libs/\*.jar -t springio/gs-spring-boot-docker .
If you use Maven, you can run it with the following command:
docker build -t springio/gs-spring-boot-docker .
This command builds an image and tags it as springio/gs-spring-boot-docker
.
This Dockerfile is very simple, but it is all you need to run a Spring Boot app with no frills: just Java and a JAR file. The build creates a spring user and a spring group to run the application. It is then copied (by the COPY
command) the project JAR file into the container as app.jar
, which is run in the ENTRYPOINT
. The array form of the Dockerfile ENTRYPOINT
is used so that there is no shell wrapping the Java process. The Topical Guide on Docker goes into this topic in more detail.
Note
|
To reduce Tomcat startup time, we used to add a system property pointing to /dev/urandom as a source of entropy. This is not necessary anymore with JDK 8 or later.
|
Running applications with user privileges helps to mitigate some risks (see, for example, a thread on StackExchange).
So, an important improvement to the Dockerfile
is to run the application as a non-root user:
FROM openjdk:8-jdk-alpine
RUN addgroup -S spring && adduser -S spring -G spring
USER spring:spring
ARG JAR_FILE=target/*.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","/app.jar"]
You can see the username in the application startup logs when you build and run the application:
docker build -t springio/gs-spring-boot-docker .
docker run -p 8080:8080 springio/gs-spring-boot-docker
Note the started by
in the first INFO
log entry:
:: Spring Boot :: (v2.2.1.RELEASE)
2020-04-23 07:29:41.729 INFO 1 --- [ main] hello.Application : Starting Application on b94c86e91cf9 with PID 1 (/app started by spring in /)
...
Also, there is a clean separation between dependencies and application resources in a Spring Boot fat JAR file, and we can use that fact to improve performance. The key is to create layers in the container filesystem. The layers are cached both at build time and at runtime (in most runtimes), so we want the most frequently changing resources (usually the class and static resources in the application itself) to be layered after the more slowly changing resources. Thus, we use a slightly different implementation of the Dockerfile:
link:complete/Dockerfile[role=include]
This Dockerfile has a DEPENDENCY
parameter pointing to a directory where we have unpacked the fat JAR. To use the DEPENDENCY
parameter with Gradle, run the following command:
mkdir -p build/dependency && (cd build/dependency; jar -xf ../libs/*.jar)
To use the DEPENDENCY
parameter with Maven, run the following command:
mkdir -p target/dependency && (cd target/dependency; jar -xf ../*.jar)
If we get that right, it already contains a BOOT-INF/lib
directory with the dependency JARs in it, and a BOOT-INF/classes
directory with the application classes in it. Notice that we use the application’s own main class: hello.Application
. (This is faster than using the indirection provided by the fat JAR launcher.)
Note
|
Exploding the JAR file can result in the classpath order being different at runtime. A well-behaved and well-written application should not care about this, but you may see behavior changes if the dependencies are not carefully managed. |
Note
|
If you use boot2docker , you need to run it first before you do anything with the Docker command line or with the build tools (it runs a daemon process that handles the work for you in a virtual machine).
|
From a Gradle build, you need to add the explicit build arguments in the Docker command line:
docker build --build-arg DEPENDENCY=build/dependency -t springio/gs-spring-boot-docker .
To build the image in Maven, you can use a simpler Docker command line:
docker build -t springio/gs-spring-boot-docker .
Tip
|
Of course, if you use only Gradle, you could change the Dockerfile to make the default value of DEPENDENCY match the location of the unpacked archive.
|
Instead of building with the Docker command line, you might want to use a build plugin. Spring Boot supports building a container from Maven or Gradle by using its own build plugin. Google also has an open source tool called Jib that has Maven and Gradle plugins. Probably the most interesting thing about this approach is that you do not need a Dockerfile
. You can build the image by using the same standard container format as you get from docker build
. Also, it can work in environments where docker is not installed (not uncommon in build servers).
Note
|
By default, the images generated by the default buildpacks do not run your application as root. Check the configuration guide for Gradle or Maven for how to change the default settings. |
You can build a tagged docker image with Gradle in one command:
./gradlew bootBuildImage --imageName=springio/gs-spring-boot-docker
To get started quickly, you can run the Spring Boot image generator without even changing your pom.xml
(remember that the Dockerfile
, if it is still, there is ignored):
./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=springio/gs-spring-boot-docker
To push to a Docker registry, you need to have permission to push, which you do not have by default. Change the image prefix to your own Dockerhub ID and docker login
to make sure you are authenticated before you run Docker.
A docker push
in the example fails (unless you are part of the "springio" organization at Dockerhub). However, if you change the configuration to match your own docker ID, it should succeed. You then have a new tagged, deployed image.
You do NOT have to register with docker or publish anything to run a docker image that was built locally. If you built with Docker (from the command line or from Spring Boot), you still have a locally tagged image, and you can run it like this:
$ docker run -p 8080:8080 -t springio/gs-spring-boot-docker
Container memory limit unset. Configuring JVM for 1G container.
Calculated JVM Memory Configuration: -XX:MaxDirectMemorySize=10M -XX:MaxMetaspaceSize=86381K -XX:ReservedCodeCacheSize=240M -Xss1M -Xmx450194K (Head Room: 0%, Loaded Class Count: 12837, Thread Count: 250, Total Memory: 1073741824)
....
2015-03-31 13:25:48.035 INFO 1 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2015-03-31 13:25:48.037 INFO 1 --- [ main] hello.Application : Started Application in 5.613 seconds (JVM running for 7.293)
Note
|
The CF memory calculator is used at runtime to size the JVM to fit the container. |
The application is then available on http://localhost:8080 (visit that and it says, “Hello Docker World”).
Note
|
When using a Mac with boot2docker, you typically see things like this at startup:
To see the application, you must visit the IP address in DOCKER_HOST instead of localhost — in this case, https://192.168.59.103:8080, the public facing IP of the VM. |
When it is running, you can see in the list of containers, similar to the following example:
$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
81c723d22865 springio/gs-spring-boot-docker:latest "java -Djava.secur..." 34 seconds ago Up 33 seconds 0.0.0.0:8080->8080/tcp goofy_brown
To shut it down again, you can run docker stop
with the container ID from the previous listing (yours will be different):
docker stop goofy_brown
81c723d22865
If you like, you can also delete the container (it is persisted in your filesystem somewhere under /var/lib/docker
) when you are finished with it:
docker rm goofy_brown
Running your freshly minted Docker image with Spring profiles is as easy as passing an environment variable to the Docker run command (for the prod
profile):
docker run -e "SPRING_PROFILES_ACTIVE=prod" -p 8080:8080 -t springio/gs-spring-boot-docker
You can do the same for the dev
profile:
docker run -e "SPRING_PROFILES_ACTIVE=dev" -p 8080:8080 -t springio/gs-spring-boot-docker
To debug the application, you can use JPDA Transport. We treat the container like a remote server.
To enable this feature, pass Java agent settings in the JAVA_OPTS
variable and map the agent’s port
to localhost during a container run. With Docker for Mac, there is a limitation because we can’t
access the container by IP without black magic usage.
docker run -e "JAVA_TOOL_OPTIONS=-agentlib:jdwp=transport=dt_socket,address=5005,server=y,suspend=n" -p 8080:8080 -p 5005:5005 -t springio/gs-spring-boot-docker
Congratulations! You have created a Docker container for a Spring Boot application! By default, Spring Boot applications run on port 8080 inside the container, and we mapped that to the same port on the host by using -p
on the command line.
The following guides may also be helpful:
-
Topical Guide on Spring Boot with Docker (more depth than this guide)