[bitnami/keycloak] Release 26.3.3-debian-12-r2 (#86149)
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
parent
30f1674409
commit
d647e3abec
|
|
@ -8,7 +8,7 @@ ARG JAVA_EXTRA_SECURITY_DIR="/bitnami/java/extra-security"
|
|||
ARG TARGETARCH
|
||||
|
||||
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
|
||||
org.opencontainers.image.created="2025-09-07T01:22:42Z" \
|
||||
org.opencontainers.image.created="2025-09-12T10:20:50Z" \
|
||||
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
||||
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/keycloak/README.md" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/keycloak" \
|
||||
|
|
@ -52,7 +52,7 @@ RUN /opt/bitnami/scripts/java/postunpack.sh
|
|||
RUN /opt/bitnami/scripts/keycloak/postunpack.sh
|
||||
ENV APP_VERSION="26.3.3" \
|
||||
BITNAMI_APP_NAME="keycloak" \
|
||||
IMAGE_REVISION="1" \
|
||||
IMAGE_REVISION="2" \
|
||||
JAVA_HOME="/opt/bitnami/java" \
|
||||
PATH="/opt/bitnami/common/bin:/opt/bitnami/java/bin:/opt/bitnami/keycloak/bin:$PATH"
|
||||
|
||||
|
|
|
|||
|
|
@ -18,6 +18,8 @@ services:
|
|||
- postgresql
|
||||
ports:
|
||||
- "80:8080"
|
||||
environment:
|
||||
- KC_BOOTSTRAP_ADMIN_PASSWORD=bitnami123
|
||||
|
||||
volumes:
|
||||
postgresql_data:
|
||||
|
|
|
|||
|
|
@ -135,7 +135,7 @@ export KC_HTTP_PORT="${KC_HTTP_PORT:-8080}"
|
|||
KC_HTTPS_PORT="${KC_HTTPS_PORT:-"${KEYCLOAK_HTTPS_PORT:-}"}"
|
||||
export KC_HTTPS_PORT="${KC_HTTPS_PORT:-8443}"
|
||||
KC_HTTP_RELATIVE_PATH="${KC_HTTP_RELATIVE_PATH:-"${KEYCLOAK_HTTP_RELATIVE_PATH:-}"}"
|
||||
export KC_HTTP_RELATIVE_PATH="${KC_HTTP_RELATIVE_PATH:-}"
|
||||
export KC_HTTP_RELATIVE_PATH="${KC_HTTP_RELATIVE_PATH:-/}"
|
||||
KC_LOG_LEVEL="${KC_LOG_LEVEL:-"${KEYCLOAK_LOG_LEVEL:-}"}"
|
||||
export KC_LOG_LEVEL="${KC_LOG_LEVEL:-info}"
|
||||
KC_LOG_CONSOLE_OUTPUT="${KC_LOG_CONSOLE_OUTPUT:-"${KEYCLOAK_LOG_OUTPUT:-}"}"
|
||||
|
|
@ -145,11 +145,11 @@ export KC_METRICS_ENABLED="${KC_METRICS_ENABLED:-false}"
|
|||
KC_HEALTH_ENABLED="${KC_HEALTH_ENABLED:-"${KEYCLOAK_ENABLE_HEALTH_ENDPOINTS:-}"}"
|
||||
export KC_HEALTH_ENABLED="${KC_HEALTH_ENABLED:-false}"
|
||||
KC_CACHE="${KC_CACHE:-"${KEYCLOAK_CACHE_TYPE:-}"}"
|
||||
export KC_CACHE="${KC_CACHE:-}"
|
||||
export KC_CACHE="${KC_CACHE:-ispn}"
|
||||
KC_CACHE_STACK="${KC_CACHE_STACK:-"${KEYCLOAK_CACHE_STACK:-}"}"
|
||||
export KC_CACHE_STACK="${KC_CACHE_STACK:-}"
|
||||
KC_CACHE_CONFIG_FILE="${KC_CACHE_CONFIG_FILE:-"${KEYCLOAK_CACHE_CONFIG_FILE:-}"}"
|
||||
export KC_CACHE_CONFIG_FILE="${KC_CACHE_CONFIG_FILE:-}"
|
||||
export KC_CACHE_CONFIG_FILE="${KC_CACHE_CONFIG_FILE:-cache-ispn.xml}"
|
||||
KC_HOSTNAME="${KC_HOSTNAME:-"${KEYCLOAK_HOSTNAME:-}"}"
|
||||
export KC_HOSTNAME="${KC_HOSTNAME:-}"
|
||||
KC_HOSTNAME_ADMIN="${KC_HOSTNAME_ADMIN:-"${KEYCLOAK_HOSTNAME_ADMIN:-}"}"
|
||||
|
|
|
|||
|
|
@ -95,14 +95,14 @@ docker build -t bitnami/APP:latest .
|
|||
| `KC_BOOTSTRAP_ADMIN_PASSWORD` | Bootstrap admin password | `nil` |
|
||||
| `KC_HTTP_PORT` | HTTP port | `8080` |
|
||||
| `KC_HTTPS_PORT` | HTTPS port | `8443` |
|
||||
| `KC_HTTP_RELATIVE_PATH` | Set the path relative to "/" for serving resources. | `nil` |
|
||||
| `KC_HTTP_RELATIVE_PATH` | Set the path relative to "/" for serving resources. | `/` |
|
||||
| `KC_LOG_LEVEL` | Keycloak log level | `info` |
|
||||
| `KC_LOG_CONSOLE_OUTPUT` | Keycloak log output | `default` |
|
||||
| `KC_METRICS_ENABLED` | Enable metrics. | `false` |
|
||||
| `KC_HEALTH_ENABLED` | Enable health check endpoints. | `false` |
|
||||
| `KC_CACHE` | Cache mechanism for high-availability. | `nil` |
|
||||
| `KC_CACHE` | Cache mechanism for high-availability. | `ispn` |
|
||||
| `KC_CACHE_STACK` | Default stack to use for cluster communication and node discovery. | `nil` |
|
||||
| `KC_CACHE_CONFIG_FILE` | Path to the file from which cache configuration should be loaded from. | `nil` |
|
||||
| `KC_CACHE_CONFIG_FILE` | Path to the file from which cache configuration should be loaded from. | `cache-ispn.xml` |
|
||||
| `KC_HOSTNAME` | Keycloak hostname | `nil` |
|
||||
| `KC_HOSTNAME_ADMIN` | Keycloak admin hostname | `nil` |
|
||||
| `KC_HOSTNAME_STRICT` | Disables dynamically resolving the hostname from request headers | `false` |
|
||||
|
|
|
|||
|
|
@ -18,6 +18,8 @@ services:
|
|||
- postgresql
|
||||
ports:
|
||||
- "80:8080"
|
||||
environment:
|
||||
- KC_BOOTSTRAP_ADMIN_PASSWORD=bitnami123
|
||||
|
||||
volumes:
|
||||
postgresql_data:
|
||||
|
|
|
|||
Loading…
Reference in New Issue