Idan G.
Idan G.

Reputation: 11

Installing Active directory or Ldap server in windows container

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

Answers (1)

Saqib Ahmed
Saqib Ahmed

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

Related Questions