Ubuntu server version of krb5kdc with augmented configuration

This commit is contained in:
nugaon
2020-07-23 16:59:22 +02:00
commit 48d6d53cc4
3 changed files with 172 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM ubuntu
LABEL MAINTAINER nugaon <toth.viktor.levente@gmail.com>
# kerberos
RUN apt-get update -y && apt-get install -y krb5-kdc-ldap krb5-admin-server \
ldap-utils
EXPOSE 88 464 749
ADD ./config.sh /config.sh
ENTRYPOINT ["/config.sh"]