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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Use these artefacts as a reference to build your deployment artefacts. Existing

This repository contains following Docker resources:

- Per profile Docker resources of WSO2 Identity Server version `7.1.0` for Alpine, Rocky Linux and Ubuntu
- Per profile Docker resources of WSO2 Identity Server version `7.2.0` for Alpine, Rocky Linux and Ubuntu
- Docker Compose resources to evaluate most common Identity And Access Management (IAM) deployment patterns

Per profile Docker resources for WSO2 Identity Server help you build generic Docker images for deploying the
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/is/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
Instead, extract the zip file and directly browse to `docker-is-<released-version-here>/docker-compose/is` folder.

> If you want to try out an already released tag, after executing 2nd step, checkout the relevant tag,
i.e. for example: git checkout tags/v7.1.0.1 and continue below steps.
i.e. for example: git checkout tags/v7.2.0.1 and continue below steps.

3. Execute following Docker Compose command to start the deployment.

Expand Down
4 changes: 2 additions & 2 deletions docker-compose/is/dockerfiles/is/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
# ------------------------------------------------------------------------

# set base Docker image to WSO2 Identity Server Docker image with latest WSO2 Updates
FROM docker.wso2.com/wso2is:7.1.0.0
FROM docker.wso2.com/wso2is:7.2.0.0
LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>"

# build arguments for external artifacts
ARG MYSQL_CONNECTOR_VERSION=8.0.30
ARG MYSQL_CONNECTOR_VERSION=8.0.33

# add MySQL JDBC connector to server home as a third party library
ADD --chown=wso2carbon:wso2 https://repo1.maven.org/maven2/mysql/mysql-connector-java/${MYSQL_CONNECTOR_VERSION}/mysql-connector-java-${MYSQL_CONNECTOR_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/dropins/
22 changes: 11 additions & 11 deletions dockerfiles/alpine/is/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,30 +19,30 @@
# Set base Docker image to Alpine Docker image.
FROM alpine:3.22
LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v7.1.0.1"
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v7.2.0.1"

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'

# Install JDK Dependencies
RUN apk add --no-cache tzdata musl-locales musl-locales-lang \
&& rm -rf /var/cache/apk/*

ENV JAVA_VERSION=jdk-21.0.6+7
ENV JAVA_VERSION=jdk-21.0.8+9

# Install Temurin OpenJDK 21
RUN set -eux; \
apk add --no-cache --virtual .fetch-deps curl; \
ARCH="$(apk --print-arch)"; \
case "${ARCH}" in \
aarch64) \
ESUM='2798990401d9c47eaeddb7d5148f577770e4c1013b9223290a43765463204ae4'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.6%2B7/OpenJDK21U-jdk_aarch64_alpine-linux_hotspot_21.0.6_7.tar.gz'; \
;; \
x86_64) \
ESUM='6c66470a9143ad562570a34c1583d9fa50bf904f6f9ced642e9d800ce043a0f3'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.6%2B7/OpenJDK21U-jdk_x64_alpine-linux_hotspot_21.0.6_7.tar.gz'; \
ESUM='73c4cbe10f4f385383d9cb54d34f2bee2c68b5265f9e3d954f3326948c40c0be'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.8%2B9/OpenJDK21U-jdk_x64_alpine-linux_hotspot_21.0.8_9.tar.gz'; \
;; \
aarch64) \
ESUM='4773cfdc59d66b75f4a68ac843b2b5854791840114cf8bb1b56fb6f7826ae498'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.8%2B9/OpenJDK21U-jdk_aarch64_alpine-linux_hotspot_21.0.8_9.tar.gz'; \
;; \
*) \
*) \
echo "Unsupported arch: ${ARCH}"; \
exit 1; \
;; \
Expand Down Expand Up @@ -70,11 +70,11 @@ ARG USER_GROUP_ID=802
ARG USER_HOME=/home/${USER}
# Build arguments for WSO2 product installation.
ARG WSO2_SERVER_NAME=wso2is
ARG WSO2_SERVER_VERSION=7.1.0
ARG WSO2_SERVER_VERSION=7.2.0
ARG WSO2_SERVER_REPOSITORY=product-is
ARG WSO2_SERVER=${WSO2_SERVER_NAME}-${WSO2_SERVER_VERSION}
ARG WSO2_SERVER_HOME=${USER_HOME}/${WSO2_SERVER}
# Hosted wso2is-7.1.0 distribution URL.
# Hosted wso2is-7.2.0 distribution URL.
ARG WSO2_SERVER_DIST_URL=https://github.com/wso2/${WSO2_SERVER_REPOSITORY}/releases/download/v${WSO2_SERVER_VERSION}/${WSO2_SERVER}.zip
# Build arguments for external artifacts.
ARG DNS_JAVA_VERSION=3.6.1
Expand Down
14 changes: 7 additions & 7 deletions dockerfiles/alpine/is/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dockerfile for WSO2 Identity Server #

This section defines the step-by-step instructions to build an [Alpine](https://hub.docker.com/_/alpine/) Linux based Docker image for WSO2 Identity Server `7.1.0`.
This section defines the step-by-step instructions to build an [Alpine](https://hub.docker.com/_/alpine/) Linux based Docker image for WSO2 Identity Server `7.2.0`.

## Prerequisites

Expand All @@ -20,16 +20,16 @@ git clone https://github.com/wso2/docker-is.git
##### 2. Build the Docker image.
- Navigate to `<IS_DOCKERFILE_HOME>` directory. <br>
Execute `docker build` command as shown below.
+ `docker build -t wso2is:7.1.0-alpine .`
+ `docker build -t wso2is:7.2.0-alpine .`

> Tip - If you require the container to run with a different UID and GID, pass the preferred values of the UID and GID
> as values for build arguments `USER_ID` and `USER_GROUP_ID` when building the image, as shown below. Note
> that setting lower values for the UID and GID is not recommended.
+ `docker build -t wso2is:7.1.0-alpine --build-arg USER_ID=<UID> --build-arg USER_GROUP_ID=<GID> .`
+ `docker build -t wso2is:7.2.0-alpine --build-arg USER_ID=<UID> --build-arg USER_GROUP_ID=<GID> .`

##### 3. Running the Docker image.

- `docker run -it -p 9443:9443 wso2is:7.1.0-alpine`
- `docker run -it -p 9443:9443 wso2is:7.2.0-alpine`

>Here, only port 9443 (HTTPS servlet transport) has been mapped to a Docker host port.
You may map other container service ports, which have been exposed to Docker host ports, as desired.
Expand All @@ -49,7 +49,7 @@ As an example, steps required to change the port offset using `deployment.toml`

##### 1. Stop the Identity Server container if it's already running.

In WSO2 Identity Server version `7.1.0` product distribution, `deployment.toml` configuration file <br>
In WSO2 Identity Server version `7.2.0` product distribution, `deployment.toml` configuration file <br>
can be found at `<DISTRIBUTION_HOME>/repository/conf`. Copy the file to some suitable location of the host machine, <br>
referred to as `<SOURCE_CONFIGS>/deployment.toml` and change the `[server] -> offset` value to 1.

Expand All @@ -65,10 +65,10 @@ chmod o+r <SOURCE_CONFIGS>/deployment.toml
docker run \
-p 9444:9444 \
--volume <SOURCE_CONFIGS>/deployment.toml:<TARGET_CONFIGS>/deployment.toml \
wso2is:7.1.0-alpine
wso2is:7.2.0-alpine
```

>In here, <TARGET_CONFIGS> refers to /home/wso2carbon/wso2is-7.1.0/repository/conf folder of the container.
>In here, <TARGET_CONFIGS> refers to /home/wso2carbon/wso2is-7.2.0/repository/conf folder of the container.

## Docker command usage references

Expand Down
14 changes: 7 additions & 7 deletions dockerfiles/jdk11/alpine/is/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@
# ------------------------------------------------------------------------

# set base Docker image to Alpine Docker image
FROM alpine:3.20.6
FROM alpine:3.22
LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v7.1.0.1"
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v7.2.0.1"

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'

# Install JDK Dependencies
RUN apk add --no-cache tzdata musl-locales musl-locales-lang \
&& rm -rf /var/cache/apk/*

ENV JAVA_VERSION jdk-11.0.27+6
ENV JAVA_VERSION jdk-11.0.28+6

# Install JDK11
RUN set -eux; \
apk add --no-cache --virtual .fetch-deps curl; \
ARCH="$(apk --print-arch)"; \
case "${ARCH}" in \
amd64|x86_64) \
ESUM='5defac0a735690b04bc1bbe9d7e3b5faed6dd54f946858349ba114394f8fb386'; \
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.27%2B6/OpenJDK11U-jdk_x64_alpine-linux_hotspot_11.0.27_6.tar.gz'; \
ESUM='7e9e5241d1378d75ae70e9b216d0d51d3aa2e61e187e92e09d117cb613e16ee4'; \
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.28%2B6/OpenJDK11U-jdk_x64_alpine-linux_hotspot_11.0.28_6.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
Expand Down Expand Up @@ -66,11 +66,11 @@ ARG USER_GROUP_ID=802
ARG USER_HOME=/home/${USER}
# Build arguments for WSO2 product installation.
ARG WSO2_SERVER_NAME=wso2is
ARG WSO2_SERVER_VERSION=7.1.0
ARG WSO2_SERVER_VERSION=7.2.0
ARG WSO2_SERVER_REPOSITORY=product-is
ARG WSO2_SERVER=${WSO2_SERVER_NAME}-${WSO2_SERVER_VERSION}
ARG WSO2_SERVER_HOME=${USER_HOME}/${WSO2_SERVER}
# Hosted wso2is-7.1.0 distribution URL.
# Hosted wso2is-7.2.0 distribution URL.
ARG WSO2_SERVER_DIST_URL=https://github.com/wso2/${WSO2_SERVER_REPOSITORY}/releases/download/v${WSO2_SERVER_VERSION}/${WSO2_SERVER}.zip
# Build arguments for external artifacts.
ARG DNS_JAVA_VERSION=3.6.1
Expand Down
14 changes: 7 additions & 7 deletions dockerfiles/jdk11/alpine/is/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dockerfile for WSO2 Identity Server #

This section defines the step-by-step instructions to build an [Alpine](https://hub.docker.com/_/alpine/) Linux based Docker image for WSO2 Identity Server `7.1.0`.
This section defines the step-by-step instructions to build an [Alpine](https://hub.docker.com/_/alpine/) Linux based Docker image for WSO2 Identity Server `7.2.0`.

## Prerequisites

Expand All @@ -20,16 +20,16 @@ git clone https://github.com/wso2/docker-is.git
##### 2. Build the Docker image.
- Navigate to `<IS_DOCKERFILE_HOME>` directory. <br>
Execute `docker build` command as shown below.
+ `docker build -t wso2is:7.1.0-alpine .`
+ `docker build -t wso2is:7.2.0-alpine .`

> Tip - If you require the container to run with a different UID and GID, pass the preferred values of the UID and GID
> as values for build arguments `USER_ID` and `USER_GROUP_ID` when building the image, as shown below. Note
> that setting lower values for the UID and GID is not recommended.
+ `docker build -t wso2is:7.1.0-alpine --build-arg USER_ID=<UID> --build-arg USER_GROUP_ID=<GID> .`
+ `docker build -t wso2is:7.2.0-alpine --build-arg USER_ID=<UID> --build-arg USER_GROUP_ID=<GID> .`

##### 3. Running the Docker image.

- `docker run -it -p 9443:9443 wso2is:7.1.0-alpine`
- `docker run -it -p 9443:9443 wso2is:7.2.0-alpine`

>Here, only port 9443 (HTTPS servlet transport) has been mapped to a Docker host port.
You may map other container service ports, which have been exposed to Docker host ports, as desired.
Expand All @@ -49,7 +49,7 @@ As an example, steps required to change the port offset using `deployment.toml`

##### 1. Stop the Identity Server container if it's already running.

In WSO2 Identity Server version `7.1.0` product distribution, `deployment.toml` configuration file <br>
In WSO2 Identity Server version `7.2.0` product distribution, `deployment.toml` configuration file <br>
can be found at `<DISTRIBUTION_HOME>/repository/conf`. Copy the file to some suitable location of the host machine, <br>
referred to as `<SOURCE_CONFIGS>/deployment.toml` and change the `[server] -> offset` value to 1.

Expand All @@ -65,10 +65,10 @@ chmod o+r <SOURCE_CONFIGS>/deployment.toml
docker run \
-p 9444:9444 \
--volume <SOURCE_CONFIGS>/deployment.toml:<TARGET_CONFIGS>/deployment.toml \
wso2is:7.1.0-alpine
wso2is:7.2.0-alpine
```

>In here, <TARGET_CONFIGS> refers to /home/wso2carbon/wso2is-7.1.0/repository/conf folder of the container.
>In here, <TARGET_CONFIGS> refers to /home/wso2carbon/wso2is-7.2.0/repository/conf folder of the container.

## Docker command usage references

Expand Down
18 changes: 9 additions & 9 deletions dockerfiles/jdk11/rocky/is/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
# ------------------------------------------------------------------------

# Set base Docker image to RockyLinux Docker image.
FROM rockylinux:8
FROM rockylinux:9
LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v7.1.0.1"
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v7.2.0.1"

# Update the system to the specific 8.10 version.
RUN dnf -y update && \
Expand All @@ -37,19 +37,19 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN yum install -y tzdata openssl ca-certificates fontconfig gzip tar nc unzip wget \
&& yum clean all

ENV JAVA_VERSION jdk-11.0.27+6
ENV JAVA_VERSION jdk-11.0.28+6

# Install Temurin OpenJDK 11.
RUN set -eux; \
ARCH="$(objdump="$(command -v objdump)" && objdump --file-headers "$objdump" | awk -F '[:,]+[[:space:]]+' '$1 == "architecture" { print $2 }')"; \
case "${ARCH}" in \
amd64|i386:x86-64) \
ESUM='dc6136eaa8c1898cbf8973bb1e203e1f653f4c9166be0f5bebe0b02c5f3b5ae3'; \
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.27%2B6/OpenJDK11U-jdk_x64_linux_hotspot_11.0.27_6.tar.gz'; \
ESUM='7dfd551795a8884b26cbb02e0301da95db40160bb194f48271dc2ef9367f50c2'; \
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.28%2B6/OpenJDK11U-jdk_x64_linux_hotspot_11.0.28_6.tar.gz'; \
;; \
aarch64|arm64) \
ESUM='4decd2e5caf4667144091cf723458b14148dc990730b3ecb34bba5eb1aa4ad5d'; \
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.27%2B6/OpenJDK11U-jdk_aarch64_linux_hotspot_11.0.27_6.tar.gz'; \
ESUM='32c316cb3998a9c9dee2829fbb577ea1c0ed666700cec73e049d44c342bb19af'; \
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.28%2B6/OpenJDK11U-jdk_aarch64_linux_hotspot_11.0.28_6.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
Expand All @@ -75,11 +75,11 @@ ARG USER_GROUP_ID=802
ARG USER_HOME=/home/${USER}
# Build arguments for WSO2 product installation.
ARG WSO2_SERVER_NAME=wso2is
ARG WSO2_SERVER_VERSION=7.1.0
ARG WSO2_SERVER_VERSION=7.2.0
ARG WSO2_SERVER_REPOSITORY=product-is
ARG WSO2_SERVER=${WSO2_SERVER_NAME}-${WSO2_SERVER_VERSION}
ARG WSO2_SERVER_HOME=${USER_HOME}/${WSO2_SERVER}
# Hosted wso2is-7.1.0 distribution URL.
# Hosted wso2is-7.2.0 distribution URL.
ARG WSO2_SERVER_DIST_URL=https://github.com/wso2/${WSO2_SERVER_REPOSITORY}/releases/download/v${WSO2_SERVER_VERSION}/${WSO2_SERVER}.zip
# Build arguments for external artifacts.
ARG DNS_JAVA_VERSION=3.6.1
Expand Down
16 changes: 8 additions & 8 deletions dockerfiles/jdk11/rocky/is/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dockerfile for WSO2 Identity Server #

This section defines the step-by-step instructions to build an [Rocky Linux](https://hub.docker.com/_/rockylinux) Linux based Docker image for WSO2 Identity Server `7.1.0`.
This section defines the step-by-step instructions to build an [Rocky Linux](https://hub.docker.com/_/rockylinux) Linux based Docker image for WSO2 Identity Server `7.2.0`.

## Prerequisites

Expand All @@ -20,18 +20,18 @@ git clone https://github.com/wso2/docker-is.git
##### 2. Build the Docker image.
- Navigate to `<IS_DOCKERFILE_HOME>` directory. <br>
Execute `docker build` command as shown below.
+ `docker build -t wso2is:7.1.0-rocky .`
+ `docker build -t wso2is:7.2.0-rocky .`

> Configure the URL of hosted wso2is-7.1.0 distribution as WSO2_SERVER_DIST_URL.
> Configure the URL of hosted wso2is-7.2.0 distribution as WSO2_SERVER_DIST_URL.

> Tip - If you require the container to run with a different UID and GID, pass the preferred values of the UID and GID
> as values for build arguments `USER_ID` and `USER_GROUP_ID` when building the image, as shown below. Note
> that setting lower values for the UID and GID is not recommended.
+ `docker build -t wso2is:7.1.0-rocky --build-arg USER_ID=<UID> --build-arg USER_GROUP_ID=<GID> .`
+ `docker build -t wso2is:7.2.0-rocky --build-arg USER_ID=<UID> --build-arg USER_GROUP_ID=<GID> .`

##### 3. Running the Docker image.

- `docker run -it -p 9443:9443 wso2is:7.1.0-rocky`
- `docker run -it -p 9443:9443 wso2is:7.2.0-rocky`

>Here, only port 9443 (HTTPS servlet transport) has been mapped to a Docker host port.
You may map other container service ports, which have been exposed to Docker host ports, as desired.
Expand All @@ -51,7 +51,7 @@ As an example, steps required to change the port offset using `deployment.toml`

##### 1. Stop the Identity Server container if it's already running.

In WSO2 Identity Server version `7.1.0` product distribution, `deployment.toml` configuration file <br>
In WSO2 Identity Server version `7.2.0` product distribution, `deployment.toml` configuration file <br>
can be found at `<DISTRIBUTION_HOME>/repository/conf`. Copy the file to some suitable location of the host machine, <br>
referred to as `<SOURCE_CONFIGS>/deployment.toml` and change the `[server] -> offset` value to 1.

Expand All @@ -67,10 +67,10 @@ chmod o+r <SOURCE_CONFIGS>/deployment.toml
docker run \
-p 9444:9444 \
--volume <SOURCE_CONFIGS>/deployment.toml:<TARGET_CONFIGS>/deployment.toml \
wso2is:7.1.0-rocky
wso2is:7.2.0-rocky
```

>In here, <TARGET_CONFIGS> refers to /home/wso2carbon/wso2is-7.1.0/repository/conf folder of the container.
>In here, <TARGET_CONFIGS> refers to /home/wso2carbon/wso2is-7.2.0/repository/conf folder of the container.

## Docker command usage references

Expand Down
20 changes: 10 additions & 10 deletions dockerfiles/jdk11/ubuntu/is/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
FROM ubuntu:24.04

LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v7.1.0.1"
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v7.2.0.1"

# Install JDK Dependencies
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
Expand All @@ -31,21 +31,21 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*

ENV JAVA_VERSION jdk-11.0.27+6
ENV JAVA_VERSION jdk-11.0.28+6

# Install Temurin OpenJDK 11.
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
amd64|x86_64) \
ESUM='dc6136eaa8c1898cbf8973bb1e203e1f653f4c9166be0f5bebe0b02c5f3b5ae3'; \
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.27%2B6/OpenJDK11U-jdk_x64_linux_hotspot_11.0.27_6.tar.gz'; \
amd64|x86-64) \
ESUM='7dfd551795a8884b26cbb02e0301da95db40160bb194f48271dc2ef9367f50c2'; \
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.28%2B6/OpenJDK11U-jdk_x64_linux_hotspot_11.0.28_6.tar.gz'; \
;; \
aarch64|arm64) \
ESUM='4decd2e5caf4667144091cf723458b14148dc990730b3ecb34bba5eb1aa4ad5d'; \
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.27%2B6/OpenJDK11U-jdk_aarch64_linux_hotspot_11.0.27_6.tar.gz'; \
ESUM='32c316cb3998a9c9dee2829fbb577ea1c0ed666700cec73e049d44c342bb19af'; \
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.28%2B6/OpenJDK11U-jdk_aarch64_linux_hotspot_11.0.28_6.tar.gz'; \
;; \
*) \
*) \
echo "Unsupported arch: ${ARCH}"; \
exit 1; \
;; \
Expand All @@ -69,11 +69,11 @@ ARG USER_GROUP_ID=802
ARG USER_HOME=/home/${USER}
# Build arguments for WSO2 product installation.
ARG WSO2_SERVER_NAME=wso2is
ARG WSO2_SERVER_VERSION=7.1.0
ARG WSO2_SERVER_VERSION=7.2.0
ARG WSO2_SERVER_REPOSITORY=product-is
ARG WSO2_SERVER=${WSO2_SERVER_NAME}-${WSO2_SERVER_VERSION}
ARG WSO2_SERVER_HOME=${USER_HOME}/${WSO2_SERVER}
# Hosted wso2is-7.1.0 distribution URL.
# Hosted wso2is-7.2.0 distribution URL.
ARG WSO2_SERVER_DIST_URL=https://github.com/wso2/${WSO2_SERVER_REPOSITORY}/releases/download/v${WSO2_SERVER_VERSION}/${WSO2_SERVER}.zip
# Build arguments for external artifacts.
ARG DNS_JAVA_VERSION=3.6.1
Expand Down
Loading