ClickHouse/docker/test/integration/kerberos_kdc/Dockerfile

14 lines
344 B
Docker
Raw Normal View History

2021-09-06 11:33:39 +00:00
# docker build -t clickhouse/kerberos-kdc .
2021-09-08 09:58:17 +00:00
FROM centos:7
2021-09-08 09:58:17 +00:00
RUN yum install -y ca-certificates krb5-server krb5-libs krb5-auth-dialog krb5-workstation
EXPOSE 88 749
RUN touch /config.sh
# should be overwritten e.g. via docker_compose volumes
# volumes: /some_path/my_kerberos_config.sh:/config.sh:ro
ENTRYPOINT ["/bin/bash", "/config.sh"]