Skip to content

Commit

Permalink
keycloak environment variables updated in the docker-compose file (#2138
Browse files Browse the repository at this point in the history
)

* Redis cluster Mode connetion string modification

* Updated redis connection string to access cluster mode and single node redis

* keycloak environment varibales updated for latest version

* Update docker-compose.yml
  • Loading branch information
kiran-aot authored Jul 9, 2024
1 parent bf1c717 commit 7d72289
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions forms-flow-idm/keycloak/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
POSTGRES_USER: ${KEYCLOAK_JDBC_USER:-admin}
POSTGRES_PASSWORD: ${KEYCLOAK_JDBC_PASSWORD:-changeme}
ports:
- 5431:5431
- 5431:5432
networks:
- keycloak-server-network

Expand All @@ -33,12 +33,12 @@ services:
- keycloak_custom_data:/keycloak_custom_data
entrypoint: ["/bin/bash", "-c", "/keycloak_custom_data/start-keycloak.sh"]
environment:
- DB_VENDOR=POSTGRES
- DB_ADDR=keycloak-db
- DB_PORT=5432
- DB_DATABASE=${KEYCLOAK_JDBC_DB:-keycloak}
- DB_USER=${KEYCLOAK_JDBC_USER:-admin}
- DB_PASSWORD=${KEYCLOAK_JDBC_PASSWORD:-changeme}
- KC_DB=postgres
- KC_DB_URL_HOST=keycloak-db
- KC_DB_URL_PORT=5432
- KC_DB_URL_DATABASE=${KEYCLOAK_JDBC_DB:-keycloak}
- KC_DB_USERNAME=${KEYCLOAK_JDBC_USER:-admin}
- KC_DB_PASSWORD=${KEYCLOAK_JDBC_PASSWORD:-changeme}
- KEYCLOAK_ADMIN=${KEYCLOAK_ADMIN_USER:-admin}
- KEYCLOAK_ADMIN_PASSWORD=${KEYCLOAK_ADMIN_PASSWORD:-changeme}
- KEYCLOAK_START_MODE=${KEYCLOAK_START_MODE:-start-dev}
Expand Down

0 comments on commit 7d72289

Please sign in to comment.