From 9c5e3d748f22709eb2a55383a33a7b046c4b6654 Mon Sep 17 00:00:00 2001 From: "K. Siva Prasad Reddy" Date: Sat, 29 Jun 2024 10:08:11 +0530 Subject: [PATCH] Upgrade libraries --- .../index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/securing-spring-boot-microservice-using-keycloak-and-testcontainers/index.adoc b/guide/securing-spring-boot-microservice-using-keycloak-and-testcontainers/index.adoc index 1033d32..293bcf9 100644 --- a/guide/securing-spring-boot-microservice-using-keycloak-and-testcontainers/index.adoc +++ b/guide/securing-spring-boot-microservice-using-keycloak-and-testcontainers/index.adoc @@ -137,7 +137,7 @@ Start the Keycloak server using Docker as follows: $ docker run -p 9090:8080 \ -e KEYCLOAK_ADMIN=admin \ -e KEYCLOAK_ADMIN_PASSWORD=admin \ - quay.io/keycloak/keycloak:23.0.1 start-dev + quay.io/keycloak/keycloak:25 start-dev ---- Now you can go to http://localhost:9090 and login into Admin Console using the credentials *admin/admin*. @@ -194,7 +194,7 @@ We registered a bean of type *PostgreSQLContainer* and also added *@ServiceConne which will start a PostgreSQL container and automatically register the DataSource properties. Next, we are registering a bean of type *KeycloakContainer* using the Docker image -*quay.io/keycloak/keycloak:23.0.1* and importing the realm configuration file. +*quay.io/keycloak/keycloak:25* and importing the realm configuration file. Then we are registering the dynamic JWT Issuer URI using *DynamicPropertyRegistry* by fetching the AuthServerUrl from the Keycloak container instance.