File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ RUN if [ -z "${LDAP_OPENLDAP_GID}" ]; then groupadd -g 911 -r openldap; else gro
1919RUN echo "deb http://ftp.debian.org/debian buster-backports main" >> /etc/apt/sources.list
2020
2121# Install OpenLDAP, ldap-utils and ssl-tools from the (backported) baseimage and clean apt-get files
22- # sources: https://github.com/osixia/docker-light-baseimage/blob/stable /image/tool/add-service-available
23- # https://github.com/osixia/docker-light-baseimage/blob/stable /image/service-available/:ssl-tools/download.sh
22+ # sources: https://github.com/osixia/docker-light-baseimage/blob/master /image/tool/add-service-available
23+ # https://github.com/osixia/docker-light-baseimage/blob/master /image/service-available/:ssl-tools/download.sh
2424RUN echo "path-include /usr/share/doc/krb5*" >> /etc/dpkg/dpkg.cfg.d/docker && apt-get -y update \
2525 && /container/tool/add-service-available :ssl-tools \
2626 && LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get -t buster-backports install -y --no-install-recommends \
@@ -50,7 +50,7 @@ RUN echo "path-include /usr/share/doc/krb5*" >> /etc/dpkg/dpkg.cfg.d/docker && a
5050ADD service /container/service
5151
5252# Use baseimage install-service script
53- # https://github.com/osixia/docker-light-baseimage/blob/stable /image/tool/install-service
53+ # https://github.com/osixia/docker-light-baseimage/blob/master /image/tool/install-service
5454RUN /container/tool/install-service
5555
5656# Add default env variables
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33# set -x (bash debug) if log level is trace
4- # https://github.com/osixia/docker-light-baseimage/blob/stable /image/tool/log-helper
4+ # https://github.com/osixia/docker-light-baseimage/blob/master /image/tool/log-helper
55log-helper level eq trace && set -x
66
77SCHEMAS=$1
Original file line number Diff line number Diff line change 11#! /bin/bash -e
22
33# set -x (bash debug) if log level is trace
4- # https://github.com/osixia/docker-light-baseimage/blob/stable /image/tool/log-helper
4+ # https://github.com/osixia/docker-light-baseimage/blob/master /image/tool/log-helper
55log-helper level eq trace && set -x
66
77# Reduce maximum number of number of open file descriptors to 1024
Original file line number Diff line number Diff line change 22set -o pipefail
33
44# set -x (bash debug) if log level is trace
5- # https://github.com/osixia/docker-light-baseimage/blob/stable /image/tool/log-helper
5+ # https://github.com/osixia/docker-light-baseimage/blob/master /image/tool/log-helper
66log-helper level eq trace && set -x
77
88# Reduce maximum number of number of open file descriptors to 1024
398398 log-helper info " Add TLS config..."
399399
400400 # generate a certificate and key with ssl-helper tool if LDAP_CRT and LDAP_KEY files don't exists
401- # https://github.com/osixia/docker-light-baseimage/blob/stable /image/service-available/:ssl-tools/assets/tool/ssl-helper
401+ # https://github.com/osixia/docker-light-baseimage/blob/master /image/service-available/:ssl-tools/assets/tool/ssl-helper
402402 ssl-helper $LDAP_SSL_HELPER_PREFIX $LDAP_TLS_CRT_PATH $LDAP_TLS_KEY_PATH $LDAP_TLS_CA_CRT_PATH
403403
404404 # create DHParamFile if not found
You can’t perform that action at this time.
0 commit comments