Dockerfile to build an ApacheDS container providing an LDAP and optionally a Kerberos service.
The latest is not production ready because new features will be tested on it first.
The tags like 2.0.0.AM26 are used to track the releases of ApacheDS. Approved new features will be tested in master branch then included in the next release.
- openfrontier/apacheds:latest -> 2.0.0.AM26
- Initialize and start gerrit.
docker run -d -p 389:10389 openfrontier/apacheds- Open your Apache Directory Studio and create a new ldap connection to ldap://:389 with
uid=admin,ou=systemas the BindDN andsecretas the bind BindPassword.
DO NOT mount host volumes in particular directories under the home directory like ~/apacheds as a volume!!! Use named volume instead!!!
- Create a named volume for the ApacheDS.
docker volume create apacheds_data- Initialize and start ApacheDS using the volume created above.
docker run -d -p 389:10389 -v apacheds_data:/var/lib/apacheds openfrontier/apacheds