From cc7022d5a03e7b8ead3e162c20091a95e96ccf9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Thu, 21 Sep 2017 21:14:09 +0200 Subject: [PATCH] fix openldap Dockerfile: bind port > 1024 --- openldap/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openldap/Dockerfile b/openldap/Dockerfile index d0ad8d8..a4c791a 100644 --- a/openldap/Dockerfile +++ b/openldap/Dockerfile @@ -11,6 +11,6 @@ RUN yum update -y \ VOLUME /var/lib/ldap WORKDIR /var/lib/ldap -EXPOSE 389 +EXPOSE 1389 ENTRYPOINT [ "/usr/sbin/slapd" ] -CMD [ "-d", "256", "-h", "ldap:///" ] +CMD [ "-d", "256", "-h", "ldap://0.0.0.0:1389/" ]