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
19
19
RUN echo "deb http://ftp.debian.org/debian buster-backports main" >> /etc/apt/sources.list
20
20
21
21
# 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
24
24
RUN echo "path-include /usr/share/doc/krb5*" >> /etc/dpkg/dpkg.cfg.d/docker && apt-get -y update \
25
25
&& /container/tool/add-service-available :ssl-tools \
26
26
&& 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
50
50
ADD service /container/service
51
51
52
52
# 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
54
54
RUN /container/tool/install-service
55
55
56
56
# Add default env variables
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# 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
5
5
log-helper level eq trace && set -x
6
6
7
7
SCHEMAS=$1
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -e
2
2
3
3
# 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
5
5
log-helper level eq trace && set -x
6
6
7
7
# Reduce maximum number of number of open file descriptors to 1024
Original file line number Diff line number Diff line change 2
2
set -o pipefail
3
3
4
4
# 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
6
6
log-helper level eq trace && set -x
7
7
8
8
# Reduce maximum number of number of open file descriptors to 1024
398
398
log-helper info " Add TLS config..."
399
399
400
400
# 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
402
402
ssl-helper $LDAP_SSL_HELPER_PREFIX $LDAP_TLS_CRT_PATH $LDAP_TLS_KEY_PATH $LDAP_TLS_CA_CRT_PATH
403
403
404
404
# create DHParamFile if not found
You can’t perform that action at this time.
0 commit comments