mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
14 lines
344 B
Docker
14 lines
344 B
Docker
# docker build -t clickhouse/kerberos-kdc .
|
|
FROM centos:7
|
|
|
|
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"]
|