Skip to content

Commit

Permalink
feat(devel): Bump Keycloak version of docker-compose to 21.1 and upda…
Browse files Browse the repository at this point in the history
…te env file
  • Loading branch information
pmoscode committed May 11, 2023
1 parent 6d677cf commit 6690061
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,8 @@ WAIT_SLEEP_INTERVAL="5"
WAIT_HOST_CONNECT_TIMEOUT="3"

# Keycloak
KEYCLOAK_USER="admin"
KEYCLOAK_PASSWORD="changeme"
KEYCLOAK_IMPORT="/tmp/local-realm.json"
KEYCLOAK_ADMIN="admin"
KEYCLOAK_ADMIN_PASSWORD="changeme"

# Revocation service
# Related to the Postgres configuration
Expand Down
7 changes: 5 additions & 2 deletions dev-assets/dev-containers/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ services:
- "5432:5432"

local_keycloak:
image: jboss/keycloak:16.1.1
image: quay.io/keycloak/keycloak:21.1
container_name: local_keycloak
command:
- start-dev
- --import-realm
env_file:
- ../../dev.env
volumes:
- ./keycloak/local-realm.json:/tmp/local-realm.json
- ./keycloak/local-realm.json:/opt/keycloak/data/import/local-realm.json
ports:
- "8081:8080"

Expand Down

0 comments on commit 6690061

Please sign in to comment.