Skip to content

Commit

Permalink
Merge pull request #428 from maykinmedia/feature/50-fix-security-issues
Browse files Browse the repository at this point in the history
⬆️ [#50] updated dependecies and fixed broken oidc tests
  • Loading branch information
bart-maykin authored Aug 9, 2024
2 parents 3990695 + 9e9f970 commit a17b704
Show file tree
Hide file tree
Showing 27 changed files with 3,717 additions and 206 deletions.
2,328 changes: 2,328 additions & 0 deletions keycloak/data/test-realm.json

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions keycloak/docker-compose.keycloak.yml
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
129 changes: 35 additions & 94 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a17b704

Please sign in to comment.