mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
With the previous configuration `docker-compose build` was always failing. This moves the dockerfiles in the parent dir and changes paths as a result. Ref moby/moby#2745
31 lines
752 B
Docker
31 lines
752 B
Docker
# Fork of https://github.com/dinkel/docker-openldap
|
|
|
|
FROM debian:jessie
|
|
|
|
LABEL maintainer="Grafana team <hello@grafana.com>"
|
|
|
|
ENV OPENLDAP_VERSION 2.4.40
|
|
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
|
|
slapd=${OPENLDAP_VERSION}* \
|
|
ldap-utils && \
|
|
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 admins-ldap-server/modules/ /etc/ldap.dist/modules
|
|
COPY admins-ldap-server/prepopulate/ /etc/ldap.dist/prepopulate
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
COPY ./prepopulate.sh /prepopulate.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["slapd", "-d", "32768", "-u", "openldap", "-g", "openldap"]
|