Quickstart: Keycloak
Setup Keycloak
version: '3.8'
services:
keycloak:
image: quay.io/keycloak/keycloak:24.0
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
ports:
- "8080:8080"
command:
- start-dev
- --import-realm
volumes:
- ./realm-export.json:/opt/keycloak/data/import/realm-export.json
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health/ready"]
interval: 10s
timeout: 5s
retries: 5Demo Users
Email
Password
Roles
Installation
5-Line Core
Step-by-Step
1
2
3
4
5
6
Complete Example
Keycloak Role Mapping
Keycloak Role
GL IAM Standard Role
Access Level
Common Pitfalls
Pitfall
Solution
Cleanup
Production Notes
Last updated
Was this helpful?