This package will build and run a lightweight dockerized Kerberos service consisting of a pair of containers: kadmin and kdc
Edit docker-compose.yaml and change the configuration values:
# kadmin
DOMAIN: "DOMAIN.ORG"
PASSWORD_MASTER: "password"
PASSWORD_KADMIN: "password"
# kdc
DOMAIN: "DOMAIN.ORG"
docker-compose build
docker-compose up
docker-compose up --detach
kadmin -r DOMAIN.ORG -p kadmin/admin -q "add_principal username@DOMAIN.ORG"
docker-compose down