-
Notifications
You must be signed in to change notification settings - Fork 153
Description
I don't think a PR can be created for a non-existing branch, otherwise I would have suggested the following in the form of a pull request.
I had a need for running two directory services (with distinct data) in parallel. To facilitate that, I created a branch in which Futurama's data is replaced by data based on the Simpsons.
If this is of interest to you, I'm happy for that branch to be added to the upstream repository. You can find my branch at https://github.com/guusdk/docker-test-openldap/tree/simpsons
It's envisioned to be used in parallel to the Futurama branch, such as:
docker run --rm -p 10389:10389 -p 10636:10636 ghcr.io/rroemhild/docker-test-openldap:master # Futurama
docker run --rm -p 20389:10389 -p 20636:10636 ghcr.io/rroemhild/docker-test-openldap:simpsons
The structure that's introduced by this commit is as follows:
/
└── dc=springfield,dc=com
├── ou=people
│ ├── cn=Bart Simpson
│ ├── cn=Homer Simpson
│ ├── cn=Charles Montgomery Plantagenet Schicklgruber Burns
│ ├── cn=Waylon J. Smithers
│ ├── cn=commoners (group with Bart & Homer)
│ └── cn=executives (group with Monty and Smithers)
└── ou=pets
├── cn=Hendrix
├── cn=Santa's Little Helper
├── cn=Snowball V
├── cn=cats (group with Snowball 5)
└── cn=dogs (group with Hendrix and SantaLH)
Beware: I've modified content entirely 'by hand' (by modifying text files through a text editor). It seems to hold up well, but I might have introduced weirdness.