Getting started
This commit is contained in:
parent
df4525672d
commit
9565ba3596
19 changed files with 2829 additions and 717 deletions
15
docker-compose.yaml
Normal file
15
docker-compose.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
services:
|
||||
keycloak:
|
||||
image: quay.io/keycloak/keycloak:24.0
|
||||
command: start-dev --import-realm
|
||||
environment:
|
||||
- "KEYCLOAK_ADMIN=admin"
|
||||
- "KEYCLOAK_ADMIN_PASSWORD=admin"
|
||||
- "KEYCLOAK_IMPORT=/opt/keycloak/data/import/keycloak-realm.json"
|
||||
- "JAVA_OPTS_APPEND=-Dkeycloak.profile.feature.upload_scripts=enabled -Dkeycloak.migration.strategy=OVERWRITE_EXISTING"
|
||||
- KEYCLOAK_LOGLEVEL=DEBUG
|
||||
ports:
|
||||
- 8080:8080
|
||||
- 8443:8443
|
||||
volumes:
|
||||
- ./local-dev/import:/opt/keycloak/data/import
|
Loading…
Add table
Add a link
Reference in a new issue