68 lines
1.8 KiB
Docker
68 lines
1.8 KiB
Docker
FROM alpine:3.9
|
|
|
|
RUN apk add --upgrade --no-cache build-base groff libtool openldap openssl-dev cyrus-sasl-dev util-linux-dev
|
|
|
|
WORKDIR /openldap
|
|
RUN wget https://github.com/openldap/openldap/archive/OPENLDAP_REL_ENG_2_4_47.zip\
|
|
&& unzip -d /openldap OPENLDAP_REL_ENG_2_4_47.zip\
|
|
&& rm OPENLDAP_REL_ENG_2_4_47.zip\
|
|
&& mv openldap-OPENLDAP_REL_ENG_2_4_47/* .\
|
|
&& rm -r openldap-OPENLDAP_REL_ENG_2_4_47/
|
|
|
|
RUN ./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var/lib/openldap \
|
|
--libexecdir=/usr/lib \
|
|
--enable-slapd \
|
|
--enable-crypt \
|
|
--enable-modules \
|
|
--enable-dynamic \
|
|
--enable-bdb=no \
|
|
--enable-dnssrv=mod \
|
|
--enable-hdb=no \
|
|
--enable-ldap=mod \
|
|
--enable-mdb=mod \
|
|
--enable-meta=mod \
|
|
--enable-monitor=mod \
|
|
--enable-null=mod \
|
|
--enable-passwd=mod \
|
|
--enable-relay=mod \
|
|
--enable-shell=mod \
|
|
--enable-sock=mod \
|
|
--enable-sql=no \
|
|
--enable-overlays=mod \
|
|
--with-tls=openssl \
|
|
--with-cyrus-sasl
|
|
RUN make depend \
|
|
&& make \
|
|
&& make prefix=/usr libexec=/usr/lib -C contrib/slapd-modules/lastbind \
|
|
&& make install \
|
|
&& make prefix=/usr libexec=/usr/lib -C contrib/slapd-modules/lastbind install
|
|
|
|
|
|
#RUN adduser ldap -D
|
|
|
|
#EXPOSE 389
|
|
|
|
#CMD ["slapd", "-u", "ldap", "-g", "ldap", "-d", "32768"]
|
|
|
|
WORKDIR /
|
|
|
|
ENV dc=stuve
|
|
ENV dcr=test
|
|
COPY entrypoint.sh /
|
|
|
|
RUN sed -i 's!/run/openldap/slapd.pid!/tmp/openladp.pid!' /etc/openldap/slapd.conf
|
|
RUN sed -i 's!/run/openldap/slapd.args!/tmp/openladp.args!' /etc/openldap/slapd.conf
|
|
|
|
ADD start.ldif /etc/openldap/start.ldif
|
|
RUN sed -i s/dc=$dc/dc=$dcr/g /etc/openldap/start.ldif
|
|
RUN sed -i s/dc:\ $dc/dc:\ $dcr/g /etc/openldap/start.ldif
|
|
ADD slapd.conf /etc/openldap/slapd.conf
|
|
RUN chown ldap:ldap -R /etc/openldap
|
|
RUN chown ldap:ldap -R /var/lib/openldap
|
|
|
|
EXPOSE 389
|
|
|
|
CMD ["/entrypoint.sh"]
|