https://github.com/arenadata/docker_kdc
Kerberos Key Distribution Center Docker image
https://github.com/arenadata/docker_kdc
Last synced: about 1 month ago
JSON representation
Kerberos Key Distribution Center Docker image
- Host: GitHub
- URL: https://github.com/arenadata/docker_kdc
- Owner: arenadata
- License: unlicense
- Created: 2020-08-24T21:44:03.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-24T22:00:56.000Z (almost 6 years ago)
- Last Synced: 2025-12-27T01:41:34.008Z (6 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
docker_kdc
==========
Minimalistic Kerberos Key Distribution Center Docker image
docker hub
----------
ilejn/kdc
Usage
-----
It is assumed that all initialization stuff is put in config.sh via _volume_ facilities
config.sh example
-----------------
Can be found in example directory is rather complex one,
several keytabs are created during start up.
docker_compose example
----------------------
``` yaml
a_kerberized_server:
...
volumes:
- host_path_to_keytabs:/server/secrets
kdc:
image: ilejn/kdc:latest
hostname: kafka_kerberos
volumes:
- host_path_to_keytabs:/tmp/keytab
- /dev/urandom:/dev/random
ports: [88, 749]
```