-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #428 from maykinmedia/feature/50-fix-security-issues
⬆️ [#50] updated dependecies and fixed broken oidc tests
- Loading branch information
Showing
27 changed files
with
3,717 additions
and
206 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: | ||
objects-dev: | ||
aliases: | ||
- keycloak.objects.local | ||
|
||
networks: | ||
objects-dev: | ||
name: objects-dev |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.