feat: add keycloak ldap shared directory

This commit is contained in:
Michael Barz
2025-05-28 22:37:52 +02:00
parent 225c848507
commit 4a8af1ca99
15 changed files with 5942 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/bash
printenv
if [ ! -f /opt/bitnami/openldap/share/openldap.key ]
then
openssl req -x509 -newkey rsa:4096 -keyout /opt/bitnami/openldap/share/openldap.key -out /opt/bitnami/openldap/share/openldap.crt -sha256 -days 365 -batch -nodes
fi
# run original docker-entrypoint
/opt/bitnami/scripts/openldap/entrypoint.sh "$@"