Docker works with Java by packaging applications and dependencies into portable containers. To run a Java app in Docker, create a Dockerfile that defines the build steps. A basic Dockerfile uses a Java base image like openjdk:17-jdk-slim, sets a working directory, copies the JAR file, and specifies the entry command. Then, build the image with docker build -t my-java-app and run it with docker run. Choosing the right base image matters for stability, size, and licensing—options include eclipse-temurin, openjdk, and adoptopenjdk. For optimization, use multi-stage builds to reduce image size, group commands to minimize layers, and prefer slim or Alpine-based images. Handle configuration via environment variables or mounted volumes and manage logging via stdout/stderr or persistent volumes for debugging.
Docker works with Java by packaging Java applications and their dependencies into lightweight, portable containers. This setup ensures the app runs consistently across different environments—whether it’s your local machine, a testing server, or production. The main idea is that Docker wraps up everything your Java app needs (like the JVM, libraries, config files, etc.) into an image, which can then be run anywhere as a container.
How to Run a Java App in Docker
To get a Java application running in Docker, you typically create a Dockerfile
. This file defines the steps needed to build your Docker image.
Here's a basic example:
# Use an official Java runtime as the base image FROM openjdk:17-jdk-slim # Set the working directory inside the container WORKDIR /app # Copy the compiled JAR file into the container COPY my-app.jar app.jar # Specify the command to run the Java application ENTRYPOINT ["java", "-jar", "app.jar"]
Once you have this file, you can build the image using:
docker build -t my-java-app .
And run it like this:
docker run -p 8080:8080 my-java-app
This way, your Java app is now containerized and ready to go.
Choosing the Right Java Base Image
One of the most important decisions when using Docker with Java is choosing the right base image. Common choices include:
eclipse-temurin
: Official Temurin images maintained by the Eclipse Foundation.openjdk
: Open source images (though less actively maintained these days).adoptopenjdk/openjdkXX-ubuntu
: Previously popular, but AdoptOpenJDK has moved to Adoptium under Temurin.
You should pick based on:
- Stability and support
- Size (slim versions are better for smaller images)
- License concerns (some companies prefer Temurin for enterprise use)
For example, if you're building a Spring Boot app, using eclipse-temurin:17-jdk-jammy
might be a good fit because it’s well-maintained and comes with a full JDK.
Optimizing Docker Builds for Java Apps
Java apps can lead to large Docker images if not handled carefully. Here are a few ways to keep things lean:
- Use multi-stage builds — compile your code in one stage and copy only the final JAR to a minimal runtime image.
- Avoid unnecessary layers — group commands where possible to reduce image size.
- Use slim or alpine-based images — especially in production.
Example of a multi-stage build:
# Build stage FROM maven:3.8.6-jdk-17 AS build WORKDIR /app COPY pom.xml . RUN mvn dependency:resolve COPY . . RUN mvn package # Runtime stage FROM eclipse-temurin:17-jdk-alpine WORKDIR /app COPY --from=build /app/target/my-app.jar app.jar ENTRYPOINT ["java", "-jar", "app.jar"]
This approach keeps the final image small and clean while still letting you build your project inside Docker.
Handling Configuration and Logging
When running Java apps in Docker, configuration and logging need special attention.
Configuration: Externalize your config using environment variables or config files mounted as volumes. For example:
docker run -e SPRING_PROFILES_ACTIVE=prod my-java-app
Logging: Don’t write logs to a file unless necessary. Instead, let the app log to stdout/stderr so Docker can capture them directly. You can view logs using:
docker logs <container_id>
If you must write logs to a file, mount a volume to persist them:
docker run -v ./logs:/var/log/myapp my-java-app
This helps with debugging and monitoring without bloating your container.
That’s basically how Docker works with Java. It’s straightforward once you get the basics down, but there are plenty of small details—like picking the right base image or optimizing your build—that can make a big difference.
The above is the detailed content of How does Docker work with Java?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

To build a Docker image, write a complete Dockerfile that defines it and run the dockerbuild command in the correct context. 1. Write a Dockerfile containing clear instructions. Start by specifying the basic image. Use COPY, RUN, CMD and other commands to add dependencies, execute installation and setup startup commands in turn, and reasonably merge RUN steps and use .dockerignore to exclude irrelevant files; 2. Run the dockerbuild-tmy-app. command in the appropriate directory for construction, and specify the Dockerfile path through the -f parameter if necessary; 3. After the construction is completed, test whether the image runs normally. After confirming that it is correct, you can use docker

DockerworkswithDockerDesktopbyprovidingauser-friendlyinterfaceandenvironmenttomanagecontainers,images,andresourcesonlocalmachines.1.DockerDesktopbundlesDockerEngine,CLI,Compose,andothertoolsintoonepackage.2.Itusesvirtualization(likeWSL2onWindowsorHyp

To monitor Docker container resource usage, built-in commands, third-party tools, or system-level tools can be used. 1. Use dockerstats to monitor real-time: Run dockerstats to view CPU, memory, network and disk IO indicators, support filtering specific containers and recording regularly with watch commands. 2. Get container insights through cAdvisor: Deploy cAdvisor containers to obtain detailed performance data and view historical trends and visual information through WebUI. 3. In-depth analysis with system-level tools: use top/htop, iostat, iftop and other Linux tools to monitor resource consumption at the system level, and integrate Prometheu

DockerBuildKit is a modern image building backend. It can improve construction efficiency and maintainability by 1) parallel processing of independent construction steps, 2) more advanced caching mechanisms (such as remote cache reuse), and 3) structured output improves construction efficiency and maintainability, significantly optimizing the speed and flexibility of Docker image building. Users only need to enable the DOCKER_BUILDKIT environment variable or use the buildx command to activate this function.

DockerSecretsprovideasecurewaytomanagesensitivedatainDockerenvironmentsbystoringsecretsseparatelyandinjectingthematruntime.TheyarepartofDockerSwarmmodeandmustbeusedwithinthatcontext.Tousethemeffectively,firstcreateasecretusingdockersecretcreate,thenr

Dockerlayersimproveefficiencybyenablingcaching,reducingstorage,andspeedingupbuilds.EachlayerrepresentsfilesystemchangesfromDockerfileinstructionslikeRUNorCOPY,stackingtoformthefinalimage.Layersarecachedseparately,sounchangedstepsreuseexistinglayers,a

To create a custom Docker network driver, you need to write a Go plugin that implements NetworkDriverPlugin API and communicate with Docker via Unix sockets. 1. First understand the basics of Docker plug-in, and the network driver runs as an independent process; 2. Set up the Go development environment and build an HTTP server that listens to Unix sockets; 3. Implement the required API methods such as Plugin.Activate, GetCapabilities, CreateNetwork, etc. and return the correct JSON response; 4. Register the plug-in to the /run/docker/plugins/ directory and pass the dockernetwork

The core feature of DockerCompose is to start multiple containers in one click and automatically handle the dependencies and network connections between them. It defines services, networks, volumes and other resources through a YAML file, realizes service orchestration (1), automatically creates an internal network to make services interoperable (2), supports data volume management to persist data (3), and implements configuration reuse and isolation through different profiles (4). Suitable for local development environment construction (1), preliminary verification of microservice architecture (2), test environment in CI/CD (3), and stand-alone deployment of small applications (4). To get started, you need to install Docker and its Compose plugin (1), create a project directory and write docker-compose
