-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⬆️ [#50] updated dependecies and added oidc tests
- Loading branch information
1 parent
1e74635
commit 3fca474
Showing
17 changed files
with
6,023 additions
and
2,463 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Config taken from https://stackoverflow.com/a/77257732 | ||
# | ||
# This docker-compose is for development and test purposes. Tests are recorded with | ||
# VCR against this instance. | ||
# | ||
# Log in to http://localhost:8080/admin/master/console/ with `admin`/`admin` | ||
# credentials. | ||
# | ||
# DO NOT USE THIS IN PRODUCTION. | ||
# | ||
# Start a Keycloak instance in your local environment from the parent directory: | ||
# | ||
# docker compose -f docker-compose.keycloak.yml up -d | ||
# | ||
|
||
version: '3' | ||
|
||
services: | ||
keycloak: | ||
image: quay.io/keycloak/keycloak:23.0 | ||
command: start-dev --import-realm | ||
environment: | ||
- KEYCLOAK_ADMIN=admin | ||
- KEYCLOAK_ADMIN_PASSWORD=admin | ||
volumes: | ||
- ./data:/opt/keycloak/data/import | ||
ports: | ||
- 8080:8080 | ||
networks: | ||
objecttypes-dev: | ||
aliases: | ||
- keycloak.objecttypes.local | ||
|
||
networks: | ||
objecttypes-dev: | ||
name: objecttypes-dev |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.