Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐳 Upgrade keycloak docker image to 24.0.1-0 #1109

Merged
merged 1 commit into from
Mar 22, 2024
Merged
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
10 changes: 5 additions & 5 deletions docker/docker-compose.keycloak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ version: '3.4'

services:
keycloak:
image: jboss/keycloak
image: keycloak/keycloak:24.0.1-0
environment:
- KEYCLOAK_USER=demo
- KEYCLOAK_PASSWORD=demo
- KEYCLOAK_IMPORT=/realm.json
- KEYCLOAK_ADMIN=demo
- KEYCLOAK_ADMIN_PASSWORD=demo
command: start-dev --import-realm
volumes:
- ./keycloak/fixtures/realm.json:/realm.json
- ./keycloak/fixtures/realm.json:/opt/keycloak/data/import/realm.json
ports:
- 8080:8080
networks:
Expand Down
24 changes: 12 additions & 12 deletions docker/keycloak/fixtures/oidc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@
"oidc_rp_client_id": "testid_public",
"oidc_rp_client_secret": "23a12032-e080-4f65-b733-ad2567ec1605",
"oidc_rp_sign_algo": "RS256",
"oidc_op_discovery_endpoint": "http://localhost:8080/auth/realms/test/",
"oidc_op_jwks_endpoint": "http://localhost:8080/auth/realms/test/protocol/openid-connect/certs",
"oidc_op_authorization_endpoint": "http://localhost:8080/auth/realms/test/protocol/openid-connect/auth",
"oidc_op_token_endpoint": "http://localhost:8080/auth/realms/test/protocol/openid-connect/token",
"oidc_op_user_endpoint": "http://localhost:8080/auth/realms/test/protocol/openid-connect/userinfo",
"oidc_op_discovery_endpoint": "http://localhost:8080/realms/test/",
"oidc_op_jwks_endpoint": "http://localhost:8080/realms/test/protocol/openid-connect/certs",
"oidc_op_authorization_endpoint": "http://localhost:8080/realms/test/protocol/openid-connect/auth",
"oidc_op_token_endpoint": "http://localhost:8080/realms/test/protocol/openid-connect/token",
"oidc_op_user_endpoint": "http://localhost:8080/realms/test/protocol/openid-connect/userinfo",
"oidc_rp_idp_sign_key": "",
"oidc_use_nonce": true,
"oidc_nonce_size": 32,
"oidc_state_size": 32,
"oidc_exempt_urls": "[]",
"userinfo_claims_source": "userinfo_endpoint",
"oidc_op_logout_endpoint": "http://localhost:8080/auth/realms/test/protocol/openid-connect/logout",
"oidc_op_logout_endpoint": "http://localhost:8080/realms/test/protocol/openid-connect/logout",
"oidc_keycloak_idp_hint": "",
"identifier_claim_name": "bsn",
"oidc_rp_scopes_list": "[\"openid\", \"bsn\"]"
Expand All @@ -32,18 +32,18 @@
"oidc_rp_client_id": "testid_public",
"oidc_rp_client_secret": "23a12032-e080-4f65-b733-ad2567ec1605",
"oidc_rp_sign_algo": "RS256",
"oidc_op_discovery_endpoint": "http://localhost:8080/auth/realms/test/",
"oidc_op_jwks_endpoint": "http://localhost:8080/auth/realms/test/protocol/openid-connect/certs",
"oidc_op_authorization_endpoint": "http://localhost:8080/auth/realms/test/protocol/openid-connect/auth",
"oidc_op_token_endpoint": "http://localhost:8080/auth/realms/test/protocol/openid-connect/token",
"oidc_op_user_endpoint": "http://localhost:8080/auth/realms/test/protocol/openid-connect/userinfo",
"oidc_op_discovery_endpoint": "http://localhost:8080/realms/test/",
"oidc_op_jwks_endpoint": "http://localhost:8080/realms/test/protocol/openid-connect/certs",
"oidc_op_authorization_endpoint": "http://localhost:8080/realms/test/protocol/openid-connect/auth",
"oidc_op_token_endpoint": "http://localhost:8080/realms/test/protocol/openid-connect/token",
"oidc_op_user_endpoint": "http://localhost:8080/realms/test/protocol/openid-connect/userinfo",
"oidc_rp_idp_sign_key": "",
"oidc_use_nonce": true,
"oidc_nonce_size": 32,
"oidc_state_size": 32,
"oidc_exempt_urls": "[]",
"userinfo_claims_source": "userinfo_endpoint",
"oidc_op_logout_endpoint": "http://localhost:8080/auth/realms/test/protocol/openid-connect/logout",
"oidc_op_logout_endpoint": "http://localhost:8080/realms/test/protocol/openid-connect/logout",
"oidc_keycloak_idp_hint": "",
"identifier_claim_name": "kvk",
"oidc_rp_scopes_list": "[\"openid\", \"kvk\"]"
Expand Down
Loading