Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
48 changes: 24 additions & 24 deletions docs/icr-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Open Liberty container images are available from the IBM Container Registry (ICR) at `icr.io/appcafe/open-liberty`. Our recommendation is to use ICR instead of Docker Hub since ICR doesn't impose rate limits on image pulls. Images can be pulled from ICR without authentication. Only images with Universal Base Image (UBI) as the Operating System are available in ICR.

The images for the latest Liberty release and the last two quarterly releases (versions ending in _.3_, _.6_, _.9_ and _.12_) are available and are refreshed regularly (every 1-2 weeks) to include fixes for the operating system (OS) and Java.
The images for the latest Liberty release and the last three quarterly releases (versions ending in _.3_, _.6_, _.9_ and _.12_) are available and are refreshed regularly (every 1-2 weeks) to include fixes for the operating system (OS) and Java.

Available image tags are listed below. The tags use the following naming convention. For more information on tags, see [Container image tags naming conventions](https://openliberty.io/docs/latest/container-images.html#tags) documentation.
```
Expand All @@ -20,7 +20,7 @@ The `beta` tag is based on UBI 9 minimal and the latest Java JRE and provides th

Append a tag to `icr.io/appcafe/open-liberty` to pull a specific image. For example:
```
icr.io/appcafe/open-liberty:25.0.0.9-kernel-slim-java17-openj9-ubi
icr.io/appcafe/open-liberty:25.0.0.12-kernel-slim-java25-openj9-ubi-minimal
```

Available images can be listed using [IBM Cloud CLI](https://cloud.ibm.com/docs/cli?topic=cli-getting-started). Log in with your IBMid prior to running the following commands. Note that authentication is only required to list the images. **Images can be pulled from ICR without authentication**:
Expand All @@ -31,7 +31,7 @@ ibmcloud cr images --restrict appcafe/open-liberty

## Latest version

The following tags include the most recent Open Liberty version: `25.0.0.10`
The following tags include the most recent Open Liberty version: `25.0.0.12`

```
kernel-slim-java25-openj9-ubi-minimal
Expand Down Expand Up @@ -69,32 +69,32 @@ The `beta` tag includes all the features and capabilities from the most recent r
beta
```

## 25.0.0.10
## 25.0.0.12

```
25.0.0.10-kernel-slim-java25-openj9-ubi-minimal
25.0.0.10-kernel-slim-java21-openj9-ubi-minimal
25.0.0.10-kernel-slim-java17-openj9-ubi-minimal
25.0.0.10-kernel-slim-java11-openj9-ubi-minimal
25.0.0.10-kernel-slim-java8-openj9-ubi-minimal
25.0.0.10-kernel-slim-java8-ibmjava-ubi-minimal
25.0.0.12-kernel-slim-java25-openj9-ubi-minimal
25.0.0.12-kernel-slim-java21-openj9-ubi-minimal
25.0.0.12-kernel-slim-java17-openj9-ubi-minimal
25.0.0.12-kernel-slim-java11-openj9-ubi-minimal
25.0.0.12-kernel-slim-java8-openj9-ubi-minimal
25.0.0.12-kernel-slim-java8-ibmjava-ubi-minimal

25.0.0.10-kernel-slim-java17-openj9-ubi
25.0.0.10-kernel-slim-java11-openj9-ubi
25.0.0.10-kernel-slim-java8-openj9-ubi
25.0.0.10-kernel-slim-java8-ibmjava-ubi
25.0.0.12-kernel-slim-java17-openj9-ubi
25.0.0.12-kernel-slim-java11-openj9-ubi
25.0.0.12-kernel-slim-java8-openj9-ubi
25.0.0.12-kernel-slim-java8-ibmjava-ubi

25.0.0.10-full-java25-openj9-ubi-minimal
25.0.0.10-full-java21-openj9-ubi-minimal
25.0.0.10-full-java17-openj9-ubi-minimal
25.0.0.10-full-java11-openj9-ubi-minimal
25.0.0.10-full-java8-openj9-ubi-minimal
25.0.0.10-full-java8-ibmjava-ubi-minimal
25.0.0.12-full-java25-openj9-ubi-minimal
25.0.0.12-full-java21-openj9-ubi-minimal
25.0.0.12-full-java17-openj9-ubi-minimal
25.0.0.12-full-java11-openj9-ubi-minimal
25.0.0.12-full-java8-openj9-ubi-minimal
25.0.0.12-full-java8-ibmjava-ubi-minimal

25.0.0.10-full-java17-openj9-ubi
25.0.0.10-full-java11-openj9-ubi
25.0.0.10-full-java8-openj9-ubi
25.0.0.10-full-java8-ibmjava-ubi
25.0.0.12-full-java17-openj9-ubi
25.0.0.12-full-java11-openj9-ubi
25.0.0.12-full-java8-openj9-ubi
25.0.0.12-full-java8-ibmjava-ubi
```

## 25.0.0.9
Expand Down
3 changes: 3 additions & 0 deletions releases/latest/kernel-slim/helpers/build/features.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -x

. /opt/ol/helpers/build/internal/logger.sh

set -Eeox pipefail
Expand Down Expand Up @@ -28,6 +30,7 @@ if [ "$SSL" == "true" ] || [ "$TLS" == "true" ]; then
fi

# Install necessary features using featureUtility
curl -v https://repo.maven.apache.org
featureUtility installServerFeatures --acceptLicense defaultServer --noCache
find /opt/ol/wlp/lib /opt/ol/wlp/bin ! -perm -g=rw -print0 | xargs -0 -r chmod g+rw