1a2909607a
This includes breaking changes due to transition from Java EE to Jakarta EE. As part of upgrading to Quarkus 3.x Keycloak migrated its codebase from Java EE to the successor Jakarta EE. This updates reflects the changes.
18 lines
562 B
YAML
Executable file
18 lines
562 B
YAML
Executable file
version: '3'
|
|
services:
|
|
keycloak:
|
|
container_name: keycloak
|
|
image: quay.io/keycloak/keycloak:22.0.0
|
|
environment:
|
|
KEYCLOAK_ADMIN: admin
|
|
KEYCLOAK_ADMIN_PASSWORD: admin
|
|
DEBUG_PORT: '*:8787'
|
|
DEBUG: 'true'
|
|
command: ['start-dev', '--debug', '--import-realm', '--features=client-policies']
|
|
ports:
|
|
- 8080:8080
|
|
- 8443:8443
|
|
- 8787:8787
|
|
volumes:
|
|
- ./target/keycloak-restrict-client-auth.jar:/opt/keycloak/providers/keycloak-restrict-client-auth.jar
|
|
- ./src/test/resources/:/opt/keycloak/data/import
|