To ease the deployment of the application on infrastructure not running k8s we created a compose file for production.
10 lines
255 B
Plaintext
10 lines
255 B
Plaintext
# Postgresql db container configuration
|
|
POSTGRES_DB=keycloak
|
|
POSTGRES_USER=keycloak
|
|
POSTGRES_PASSWORD=<Set postgresql password>
|
|
|
|
# Keycloak database configuration
|
|
KC_DB_URL_DATABASE=keycloak
|
|
KC_DB_USERNAME=keycloak
|
|
KC_DB_PASSWORD=<Same password as above>
|