reverted db password as docker postgres expects db name and db username to be the same

This commit is contained in:
muppeth 2024-07-19 22:12:33 +02:00
parent 3e9a7ee704
commit e8b9a478ff
Signed by: muppeth
GPG key ID: 0EBC7B9848D04031

View file

@ -4,7 +4,7 @@ keycloak_image: 'quay.io/keycloak/keycloak'
keycloak_version: '25.0.2'
keycloak_command: '"start-dev"' # set to "start" to run in production mode
keycloak_db_name: 'keycloak'
keycloak_db_user: 'keycloakadmin'
keycloak_db_user: 'keycloak'
keycloak_db_password: 'password'
keycloak_db_host: 'postgres'
keycloak_db_port: '5432'