mirror of
https://github.com/luzifer-docker/openldap.git
synced 2024-12-20 20:51:17 +00:00
25 lines
559 B
Docker
25 lines
559 B
Docker
FROM debian:jessie
|
|
|
|
MAINTAINER Christian Luginbühl <dinke@pimprecords.com>
|
|
|
|
ENV OPENLDAP_VERSION 2.4.40
|
|
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
|
|
slapd=${OPENLDAP_VERSION}* && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN mv /etc/ldap /etc/ldap.dist
|
|
|
|
EXPOSE 389
|
|
|
|
VOLUME ["/etc/ldap", "/var/lib/ldap"]
|
|
|
|
COPY modules/ /etc/ldap.dist/modules
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["slapd", "-d", "32768", "-u", "openldap", "-g", "openldap"]
|