mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
a7d3a024c7
This reverts commit c298c633a7
.
16 lines
377 B
Docker
16 lines
377 B
Docker
# docker build -t yandex/clickhouse-kerberos-kdc .
|
|
|
|
FROM centos:6.6
|
|
# old OS to make is faster and smaller
|
|
|
|
RUN yum install -y 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"]
|