keycloak-restrict-client-auth/docker-compose.yml
Sven-Torben Janus 6f89876fd1 chore!(deps): Update Keycloak dependencies to 18.0.0
Compatibility issues:
Due to a refactoring of Keycloak's `ResourceStore` API this extension
will no longer be backwards compatible with Keycloak versions < 18.x.

For details please see
99c06d1102
and https://github.com/keycloak/keycloak/issues/10447
2022-04-20 23:13:18 +02:00

18 lines
549 B
YAML
Executable file

version: '3'
services:
keycloak:
container_name: keycloak
image: quay.io/keycloak/keycloak:18.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']
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