*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Verified Commit 5b3efa2f authored by Tsepelakis, Sotirios's avatar Tsepelakis, Sotirios :dart:
Browse files

Update keycloak config for v19

* the `--auto-build` flag is deprecated and no longer needed. The build command is always run behind the scenes before starting the server
* the KC_PRODUCTION_MODE env variable is now removed for simplicity. No flags are used, so the command can be extended when setting the dev env variable
* References #3
parent b362fbdc
No related branches found
No related tags found
1 merge request!14Update keycloak config for v19 & Improve CI script
......@@ -39,7 +39,8 @@ services:
- ./export:/tmp
- ./ssl/${KC_HTTPS_CERTIFICATE_FILE:-tls.crt}:/etc/pki/tls/certs/${KC_HTTPS_CERTIFICATE_FILE:-tls.crt}
- ./ssl/${KC_HTTPS_CERTIFICATE_KEY_FILE:-tls.key}:/etc/pki/tls/private/${KC_HTTPS_CERTIFICATE_KEY_FILE:-tls.key}
command: ${KC_DEV_MODE:+start-dev} ${KC_PRODUCTION_MODE:+start --auto-build}
# if KC_DEV_MODE variable is set, start keycloak in dev mode (start-dev)
command: start${KC_DEV_MODE:+-dev}
pg-backups:
image: prodrigestivill/postgres-backup-local:${POSTGRES_TAG:-latest}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment