Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.35 KB

README.md

File metadata and controls

30 lines (22 loc) · 1.35 KB

ApacheDS Docker image

Dockerfile to build an ApacheDS container providing an LDAP and optionally a Kerberos service.

Branches and Tags

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

Container Quickstart

  1. Initialize and start gerrit.
  docker run -d -p 389:10389 openfrontier/apacheds
  1. Open your Apache Directory Studio and create a new ldap connection to ldap://:389 with uid=admin,ou=system as the BindDN and secret as the bind BindPassword.

Use a docker named volume as the storage.

DO NOT mount host volumes in particular directories under the home directory like ~/apacheds as a volume!!! Use named volume instead!!!

  1. Create a named volume for the ApacheDS.
  docker volume create apacheds_data
  1. Initialize and start ApacheDS using the volume created above.
  docker run -d -p 389:10389 -v apacheds_data:/var/lib/apacheds openfrontier/apacheds