An open API service indexing awesome lists of open source software.

https://github.com/intoolswetrust/ldap-server

Simple in-memory LDAP server for testing purposes - single JAR based on ApacheDS
https://github.com/intoolswetrust/ldap-server

Last synced: 16 days ago
JSON representation

Simple in-memory LDAP server for testing purposes - single JAR based on ApacheDS

Awesome Lists containing this project

README

        

# Docker ldap-server image

Distroless Java Docker image with Apache DS based LDAP server

Use the `latest` tag to have up-to-date version.

## How to run it

### Default LDIF

```bash
docker run -it --rm -p 10389:10389 -p 10636:10636 kwart/ldap-server
```

### Custom LDIF

If the LDIF is located in the current directory and named `custom.ldif`

```bash
docker run -it --rm \
-p 10389:10389 \
-v `pwd`:/mnt \
kwart/ldap-server \
/mnt/custom.ldif
```