From 81402d84e569dd8b80e67ca51e82539154b43289 Mon Sep 17 00:00:00 2001 From: drs <33574414+dr-star@users.noreply.github.com> Date: Fri, 13 Dec 2024 13:46:32 +0100 Subject: [PATCH] Update README_docker_installation.md (#87) docs: Add missing feature required during exchange external token to internal token --- docs/README_docker_installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/README_docker_installation.md b/docs/README_docker_installation.md index b83cc71..a2dbef4 100644 --- a/docs/README_docker_installation.md +++ b/docs/README_docker_installation.md @@ -1,13 +1,13 @@ # Running Keycloak and Apple Identity Provider in a container The following `Dockerfile` creates a pre-configured Keycloak image that enables the health and metrics endpoints, -enables the token exchange feature, uses a PostgreSQL database and installs Apple Identity Provider extension: +enables the token exchange feature and the Fine-Grained Admin Permissions, uses a PostgreSQL database and installs Apple Identity Provider extension: ```Dockerfile FROM quay.io/keycloak/keycloak:22.0.1 as builder ENV KC_HEALTH_ENABLED=true -ENV KC_FEATURES=token-exchange +ENV KC_FEATURES=token-exchange,admin-fine-grained-authz ENV KC_DB=postgres ENV KC_HTTP_RELATIVE_PATH="/auth"