-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Add Azul Zulu images #2320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
FDelporte
wants to merge
25
commits into
docker-library:master
Choose a base branch
from
FDelporte:feature/add_zulu
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+65
−0
Open
Add Azul Zulu images #2320
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
527d628
Adding documentation for official Zulu Docker images
c48af46
Adding logo and content improvements
d623de9
Improved list of available base systems
7f24f87
Added issues link
4a7af6c
Extended example usage
f4c4277
Merge branch 'docker-library:master' into feature/add_zulu
FDelporte d7d92f7
Checking fix for check-markdownfmt.sh
26fe656
Merge remote-tracking branch 'origin/feature/add_zulu' into feature/a…
591a116
Renamed directory + new names for the docker images
3d9d9b7
Correct images, based on https://github.com/docker-library/official-i…
68be953
Correct images, based on https://github.com/docker-library/official-i…
9d008a4
Aligning documentation with https://github.com/docker-library/officia…
FDelporte 7027147
Merge branch 'docker-library:master' into feature/add_zulu
FDelporte bb4e707
Aligning documentation with https://github.com/docker-library/officia…
FDelporte fad2fe5
Aligning documentation with https://github.com/docker-library/officia…
FDelporte 56c1e4b
Aligning documentation with https://github.com/docker-library/officia…
FDelporte 2e5a7b7
Aligning documentation with https://github.com/docker-library/officia…
FDelporte f3c2299
Merge branch 'docker-library:master' into feature/add_zulu
FDelporte a7e7bd1
Handle merge request remarks
FDelporte 63106cd
Correct markdown formatting
FDelporte 805a225
Update azul-zulu/content.md
FDelporte 57c31e1
Update azul-zulu/content.md
FDelporte 9ee42fb
Remove issues file to use default link
FDelporte d280c83
Merge branch 'docker-library:master' into feature/add_zulu
FDelporte 23688b0
Rewrite to remove the hard-coded lists
FDelporte File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| # 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 | ||
|
|
||
| Multiple Long Term Support (LTS) versions are available. For information on support duration and available versions, refer to the [Azul Support Roadmap](https://www.azul.com/products/azul-support-roadmap/). | ||
|
|
||
| ### Packages | ||
|
|
||
| Multiple package types are available, including JDK and JRE variants. See the list of available tags for the complete list of supported packages. | ||
|
|
||
| ### Systems | ||
|
|
||
| Images are available for multiple base systems. See the list of available tags for the complete list of supported base systems. | ||
|
|
||
| ## 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 %%IMAGE%%:<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 %%IMAGE%%:<VERSION> | ||
| 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 | ||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| https://github.com/AzulSystems/azul-zulu-images |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| [Azul](%%GITHUB-REPO%%) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "hub": { | ||
| "categories": [ | ||
| "languages-and-frameworks" | ||
| ] | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.