From 4dabb73397741b3889a3fe9b0ccb3945f596cf5e Mon Sep 17 00:00:00 2001 From: Paul <33927916+ailox@users.noreply.github.com> Date: Fri, 17 Jul 2020 22:11:04 +0200 Subject: [PATCH] update dockerfile documentation --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 66a513c..83aa22f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM debian:buster -EXPOSE 389 +EXPOSE 389/tcp ENV DEBIAN_FRONTEND noninteractive \ CONFDIR /etc/ldap/slapd.d \ @@ -18,7 +18,7 @@ RUN apt-get update && \ # allow access to certificates usermod -a -G ssl-cert openldap && \ # remove the default config, since the entrypoint - # will populate it by hand. + # will populate it automatically. rm -rf /etc/ldap/slapd.d && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*