Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
527d628
Adding documentation for official Zulu Docker images
Mar 30, 2023
c48af46
Adding logo and content improvements
Mar 30, 2023
d623de9
Improved list of available base systems
Mar 30, 2023
7f24f87
Added issues link
Mar 30, 2023
4a7af6c
Extended example usage
Mar 30, 2023
f4c4277
Merge branch 'docker-library:master' into feature/add_zulu
FDelporte Apr 20, 2023
d7d92f7
Checking fix for check-markdownfmt.sh
May 8, 2023
26fe656
Merge remote-tracking branch 'origin/feature/add_zulu' into feature/a…
May 8, 2023
591a116
Renamed directory + new names for the docker images
Jan 26, 2024
3d9d9b7
Correct images, based on https://github.com/docker-library/official-i…
Feb 22, 2024
68be953
Correct images, based on https://github.com/docker-library/official-i…
Feb 22, 2024
9d008a4
Aligning documentation with https://github.com/docker-library/officia…
FDelporte Dec 8, 2025
7027147
Merge branch 'docker-library:master' into feature/add_zulu
FDelporte Dec 8, 2025
bb4e707
Aligning documentation with https://github.com/docker-library/officia…
FDelporte Dec 8, 2025
fad2fe5
Aligning documentation with https://github.com/docker-library/officia…
FDelporte Dec 8, 2025
56c1e4b
Aligning documentation with https://github.com/docker-library/officia…
FDelporte Dec 8, 2025
2e5a7b7
Aligning documentation with https://github.com/docker-library/officia…
FDelporte Dec 8, 2025
f3c2299
Merge branch 'docker-library:master' into feature/add_zulu
FDelporte Mar 3, 2026
a7e7bd1
Handle merge request remarks
FDelporte Mar 3, 2026
63106cd
Correct markdown formatting
FDelporte Mar 3, 2026
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
1 change: 1 addition & 0 deletions azul-zulu/README-short.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Azul Zulu is a fully tested, compatibility verified, and trusted binary distribution of OpenJDK.
70 changes: 70 additions & 0 deletions azul-zulu/content.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# What are Azul Zulu Builds of OpenJDK?

Azul Zulu Builds of OpenJDK are fully tested, and TCK compliant builds of OpenJDK for Linux, Windows, and macOS operating systems.

%%LOGO%%

Azul Zulu Builds of OpenJDK are available for free unlimited use and are commercially supported by [Azul](https://www.azul.com/) as a part of the Azul Platform Core bundle.

Check out [Azul Platform Core](https://www.azul.com/products/core/) for more information. The technical documentation can be found on [docs.azul.com/core](https://docs.azul.com/core/).

## Azul Zulu Images

Azul Zulu images on Docker Hub are available for different combinations of versions, packages, and systems.

### Versions

The following Long Term Support (LTS) versions are available:

- 8
- 11
- 17
- 21
- 25

Short Term Support (STS) versions are available for six months after their initial release.

### Packages

The following package types are available:

- jdk (default)
- jdk-headless
- jre
- jre-headless

### Systems

Images based on the following base systems are available:

- Debian (apt)

## Usage

### Running a Container

To run a container of your choice and validate its version, use the command below as an example.

Using Azul Zulu based on Debian:

```bash
docker run -it --rm azul-zulu:<ZULU_VERSION>-debian<DISTRO_VERSION> java -version
```

### Building a Container With Your Own Application

To build a Debian Docker container with a pre-built jar file with, use the following example Dockerfile:

```text
FROM azul-zulu:<VERSION>
RUN mkdir /opt/my-app
COPY my-app.jar /opt/my-app
CMD ["java", "-jar", "/opt/my-app/my-app.jar"]
```

You can build and run the Docker Image as shown in the following example:

```bash
docker build -t my-app-container .
docker run -it --rm my-app-container
```
1 change: 1 addition & 0 deletions azul-zulu/github-repo
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://github.com/AzulSystems/azul-zulu-images
1 change: 1 addition & 0 deletions azul-zulu/issues.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://github.com/AzulSystems/azul-zulu-images/issues
1 change: 1 addition & 0 deletions azul-zulu/license.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
View the [Azul Docker license information](https://github.com/AzulSystems/azul-zulu-images/blob/HEAD/LICENSE.txt) and [OpenJDK License](https://openjdk.org/legal/gplv2+ce.html) for the software contained in this image.
Binary file added azul-zulu/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions azul-zulu/maintainer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[Azul](%%GITHUB-REPO%%)
7 changes: 7 additions & 0 deletions azul-zulu/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"hub": {
"categories": [
"languages-and-frameworks"
]
}
}