[bitnami/keycloak] Fix full configuration overwriting instructions in README (#42163)

This commit is contained in:
Juan Ariza Toledano 2023-07-31 16:19:55 +02:00 committed by GitHub
parent 881fde6150
commit 1769a0d04d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -215,11 +215,11 @@ See [the official documentation](https://www.keycloak.org/server/health) for mor
#### Full configuration
The image looks for configuration files in the `/bitnami/keycloak/configuration/` directory, this directory can be changed by setting the KEYCLOAK_MOUNTED_CONF_DIR environment variable.
The image looks for configuration files in the `/bitnami/keycloak/conf/` directory, this directory can be changed by setting the `KEYCLOAK_MOUNTED_CONF_DIR` environment variable.
```console
docker run --name keycloak \
-v /path/to/standalone-ha.xml:/bitnami/keycloak/configuration/standalone-ha.xml \
-v /path/to/keycloak.conf:/bitnami/keycloak/conf/keycloak.conf \
bitnami/keycloak:latest
```
@ -229,7 +229,7 @@ Or with docker-compose
keycloak:
image: bitnami/keycloak:latest
volumes:
- /path/to/standalone-ha.xml:/bitnami/keycloak/configuration/standalone-ha.xml:ro
- /path/to/keycloak.conf:/bitnami/keycloak/conf/keycloak.conf:ro
```
After that, your changes will be taken into account in the server's behaviour.