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
- Host: GitHub
- URL: https://github.com/intoolswetrust/ldap-server
- Owner: intoolswetrust
- License: apache-2.0
- Created: 2013-08-09T11:59:21.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-10-07T21:07:38.000Z (6 months ago)
- Last Synced: 2024-10-31T19:37:06.829Z (5 months ago)
- Language: Java
- Homepage:
- Size: 130 KB
- Stars: 157
- Watchers: 11
- Forks: 58
- Open Issues: 9
-
Metadata Files:
- Readme: README-docker.md
- License: LICENSE
Awesome Lists containing this project
- awesome-java - LDAP Server
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
```