Reputation: 11
I'd like to test a product using Docker windows containers. I need a container with Active directory or Ldap server. Does anyone know how to accomplish that? Thanks
Upvotes: 1
Views: 4905
Reputation: 1125
Your question is not clear about whether you want the container to run on windows host or you want windows to run inside the container in which you want LDAP.
Regarding former, you can start OpenLDAP by following commands in a windows host machine with docker for-windows installed:
docker pull osixia/openldap
docker run --name my-openldap-container --detach osixia/openldap
The details on how to configure the OpenLDAP container is given here:
https://github.com/osixia/docker-openldap
Upvotes: 1