You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
280 B
11 lines
280 B
FROM centos7:latest
|
|
|
|
RUN yum update -y && yum -y install openldap-servers openldap-clients && yum clean all && chgrp -R root /var/lib/ldap && chmod -R g+rw,o= /var/lib/ldap
|
|
|
|
VOLUME /var/lib/ldap
|
|
WORKDIR /var/lib/ldap
|
|
|
|
EXPOSE 389 636
|
|
ENTRYPOINT [ "/usr/sbin/slapd" ]
|
|
CMD [ "-4" ]
|
|
|
|
|