Skip to content

Commit 8106ddf

Browse files
committed
Merge branch 'develop' into 7980-enhanced-dsd #7980
2 parents 710e505 + f63f0e8 commit 8106ddf

16 files changed

+2714
-211
lines changed

conf/keycloak/docker-compose.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: "3.9"
2+
3+
services:
4+
5+
keycloak:
6+
image: 'jboss/keycloak:16.1.1'
7+
environment:
8+
- KEYCLOAK_USER=kcadmin
9+
- KEYCLOAK_PASSWORD=kcpassword
10+
- KEYCLOAK_IMPORT=/tmp/oidc-realm.json
11+
- KEYCLOAK_LOGLEVEL=DEBUG
12+
ports:
13+
- "8090:8080"
14+
volumes:
15+
- './oidc-realm.json:/tmp/oidc-realm.json'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"id": "oidc-keycloak",
3+
"factoryAlias": "oidc",
4+
"title": "OIDC-Keycloak",
5+
"subtitle": "OIDC-Keycloak",
6+
"factoryData": "type: oidc | issuer: http://localhost:8090/auth/realms/oidc-realm | clientId: oidc-client | clientSecret: ss6gE8mODCDfqesQaSG3gwUwZqZt547E",
7+
"enabled": true
8+
}

0 commit comments

Comments
 (0)