18.0.0-debian-11-r5 release
This commit is contained in:
parent
d4b03e336a
commit
16502c8373
|
|
@ -58,8 +58,8 @@ component_unpack() {
|
|||
fi
|
||||
if [ -n "$package_sha256" ]; then
|
||||
echo "Verifying package integrity"
|
||||
echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - || exit "$?"
|
||||
echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - || return "$?"
|
||||
fi
|
||||
tar --directory "${directory}" --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2
|
||||
tar --directory "${directory}" --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 || return "$?"
|
||||
rm "${base_name}.tar.gz"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -40,7 +40,6 @@ keycloak_validate() {
|
|||
print_validation_error "An invalid port was specified in the environment variable ${port_var}: ${err}."
|
||||
fi
|
||||
}
|
||||
|
||||
if is_boolean_yes "$KEYCLOAK_PRODUCTION"; then
|
||||
if [[ "$KEYCLOAK_PROXY" == "edge" ]]; then
|
||||
# https://www.keycloak.org/server/reverseproxy
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`18`, `18-debian-11`, `18.0.0`, `18.0.0-debian-11-r4`, `latest` (18/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-keycloak/blob/18.0.0-debian-11-r4/18/debian-11/Dockerfile)
|
||||
* [`18`, `18-debian-11`, `18.0.0`, `18.0.0-debian-11-r5`, `latest` (18/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-keycloak/blob/18.0.0-debian-11-r5/18/debian-11/Dockerfile)
|
||||
* [`17`, `17-debian-11`, `17.0.1`, `17.0.1-debian-11-r4` (17/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-keycloak/blob/17.0.1-debian-11-r4/17/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/keycloak GitHub repo](https://github.com/bitnami/bitnami-docker-keycloak).
|
||||
|
|
|
|||
Loading…
Reference in New Issue