In Dockerfile, I put in the following:
COPY docker-files/krb5.conf /etc
RUN /usr/sbin/krb5kdc -P /var/run/krb5kdc.pid;
Expectation is that KDC would be started when I use "docker run -it" command.
However, KDC is not running after starting docker VM. Was my expectation correct ?
Thanks