-
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.
⬆️ [#50] updated keycloak docker testing env and updated django
- Loading branch information
1 parent
674927d
commit 9e9f970
Showing
8 changed files
with
2,471 additions
and
107 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 |
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
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
74 changes: 37 additions & 37 deletions
74
src/objects/accounts/tests/keycloak_cassets/duplicate_email.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
60 changes: 30 additions & 30 deletions
60
src/objects/accounts/tests/keycloak_cassets/happy_flow.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
74 changes: 37 additions & 37 deletions
74
src/objects/accounts/tests/keycloak_cassets/happy_flow_existing_user.yaml
Large diffs are not rendered by default.
Oops, something went wrong.