- #!/bin/bash -e
- # set -x (bash debug) if log level is trace
- # https://github.com/osixia/docker-light-baseimage/blob/stable/image/tool/log-helper
- log-helper level eq trace && set -x
- # Reduce maximum number of number of open file descriptors to 1024
- # otherwise slapd consumes two orders of magnitude more of RAM
- # see https://github.com/docker/docker/issues/8231
- ulimit -n 1024
- exec /usr/sbin/slapd -h "ldap://$HOSTNAME ldaps://$HOSTNAME ldapi:///" -u openldap -g openldap -d $LDAP_LOG_LEVEL
|