keycloak-restrict-client-auth/docker-compose.yml
Sven-Torben Janus f695cebcff chore!(deps): Update Keycloak dependencies to 19.0.0
Compatibility issues:
Due to a refactoring of Keycloak's `ResourceServerStore` API this extension
will no longer be backwards compatible with Keycloak versions < 19.x.
For details please see https://github.com/keycloak/keycloak/issues/10883
2022-07-27 22:06:13 +02:00

18 lines
579 B
YAML
Executable file

version: '3'
services:
keycloak:
container_name: keycloak
image: quay.io/keycloak/keycloak:19.0.0
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
DEBUG_PORT: '*:8787'
DEBUG: 'true'
command: ['start-dev', '--debug', '-Dkeycloak.import=/tmp/import/test-realm.json', "--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/:/tmp/import