mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-17 17:51:15 -05:00
We agreed to move the 'opencloud_full' example to a new directory to avoid confusion with the supported compose examples in opencloud-compose. This commit keeps the bare-metal example in place as that is still mentioned in the documentation.
10 lines
329 B
Bash
10 lines
329 B
Bash
#!/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 "$@"
|