Java is a general-purpose computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.
Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
$ docker run -it --name java bitnami/java$ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-java/master/docker-compose.yml > docker-compose.yml
$ docker-compose up -d- Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems.
- With Bitnami images the latest bug fixes and features are available as soon as possible.
- Bitnami containers, virtual machines and cloud images use the same components and configuration approach - making it easy to switch between formats based on your project needs.
- All our images are based on minideb a minimalist Debian based container image which gives you a small base container image and the familiarity of a leading Linux distribution.
- All Bitnami images available in Docker Hub are signed with Docker Content Trust (DCT). You can use
DOCKER_CONTENT_TRUST=1to verify the integrity of the images. - Bitnami container images are released daily with the latest distribution packages available.
This CVE scan report contains a security report with all open CVEs. To get the list of actionable security issues, find the "latest" tag, click the vulnerability report link under the corresponding "Security scan" field and then select the "Only show fixable" filter on the next page.
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags in our documentation page.
17-prod,17-prod-debian-10,17.0.1-prod,17.0.1-prod-debian-10-r68(17-prod/debian-10/Dockerfile)17,17-debian-10,17.0.1,17.0.1-debian-10-r69,latest(17/debian-10/Dockerfile)11-prod,11-prod-debian-10,11.0.13-prod,11.0.13-prod-debian-10-r70(11-prod/debian-10/Dockerfile)11,11-debian-10,11.0.13,11.0.13-debian-10-r68(11/debian-10/Dockerfile)1.8-prod,1.8-prod-debian-10,1.8.312-prod,1.8.312-prod-debian-10-r72(1.8-prod/debian-10/Dockerfile)1.8,1.8-debian-10,1.8.312,1.8.312-debian-10-r72(1.8/debian-10/Dockerfile)
Subscribe to project updates by watching the bitnami/java GitHub repo.
The formatting convention for prod tags has been changed:
BRANCH-debian-10-prodis now tagged asBRANCH-prod-debian-10VERSION-debian-10-rX-prodis now tagged asVERSION-prod-debian-10-rXlatest-prodis now deprecated
Containers tagged prod are production containers based on minideb. They contain the minimal dependencies required by an application to work.
They don't include development dependencies, so they are commonly used in multi-stage builds as the target image. Application code and dependencies should be copied from a different container.
The resultant containers only contain the necessary pieces of software to run the application. Therefore, they are smaller and safer.
Learn how to use multi-stage builds to build your production application container in the example directory
The recommended way to get the Bitnami Java Docker Image is to pull the prebuilt image from the Docker Hub Registry.
$ docker pull bitnami/java:latestTo use a specific version, you can pull a versioned tag. You can view the list of available versions in the Docker Hub Registry.
$ docker pull bitnami/java:[TAG]If you wish, you can also build the image yourself.
$ docker build -t bitnami/java 'https://github.com/bitnami/bitnami-docker-java.git#master:17/debian-10'The default work directory for the Java image is /app. You can mount a folder from your host here that includes your Java jar or war, and run it normally using the java command.
$ docker run -it --name java -v /path/to/app:/app bitnami/java:latest \
java -jar package.jaror using Docker Compose:
java:
image: bitnami/java:latest
command: "java -jar package.jar"
volumes:
- .:/appFurther Reading:
In case you are replacing the default minideb base image with a custom base image (based on Debian), it is possible to replace the default truststore located in the /opt/bitnami/java/lib/security folder. This is done by setting the JAVA_EXTRA_SECURITY_DIR docker build ARG variable, which needs to point to a location that contains a cacerts file that would substitute the originally bundled truststore. In the following example we will use a minideb fork that contains a custom cacerts file in the /bitnami/java/extra-security folder:
- In the Dockerfile, replace
FROM docker.io/bitnami/minideb:busterto use a custom image, defined with theMYJAVAFORK:TAGplaceholder:
- FROM bitnami/minideb:latest
+ FROM MYFORK:TAG- Run
docker buildsetting the value ofJAVA_EXTRA_SECURITY_DIR. Remember to replace theMYJAVAFORK:TAGplaceholder.
docker build --build-arg JAVA_EXTRA_SECURITY_DIR=/bitnami/java/extra-security -t MYJAVAFORK:TAG .
Bitnami provides up-to-date versions of Java, including security patches, soon after they are made upstream. We recommend that you follow these steps to upgrade your container.
$ docker pull bitnami/java:latestor if you're using Docker Compose, update the value of the image property to bitnami/java:latest.
$ docker rm -v javaor using Docker Compose:
$ docker-compose rm -v javaRe-create your container from the new image.
$ docker run --name java bitnami/java:latestor using Docker Compose:
$ docker-compose up java- Java distribution has been migrated from AdoptOpenJDK to OpenJDK Liberica. As part of VMware, we have an agreement with Bell Software to distribute the Liberica distribution of OpenJDK. That way, we can provide support & the latest versions and security releases for Java.
We'd love for you to contribute to this Docker image. You can request new features by creating an issue, or submit a pull request with your contribution.
If you encountered a problem running this container, you can file an issue. For us to provide better support, be sure to include the following information in your issue:
- Host OS and version
- Docker version (
docker version) - Output of
docker info - Version of this container (
echo $BITNAMI_IMAGE_VERSIONinside the container) - The command you used to run the container, and any relevant output you saw (masking any sensitive information)
Copyright © 2022 Bitnami
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.