18 lines
579 B
YAML
Executable file
18 lines
579 B
YAML
Executable file
version: '3'
|
|
services:
|
|
keycloak:
|
|
container_name: keycloak
|
|
image: quay.io/keycloak/keycloak:21.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
|