Update README.md

This commit is contained in:
Marisa 2025-09-12 09:26:42 -04:00
parent 6232f7ff52
commit 6a9d882fe5

View File

@ -1,7 +1,7 @@
# ldapdock # ldapdock
**_a configurable container running LDAP_** **_a configurable container running LDAP_**
most important steps most important steps to run the daemon server, some steps are NOT neccesary
build ldapdock build ldapdock
``` ```
@ -15,7 +15,20 @@ REPOSITORY TAG IMAGE ID CREATED SIZE
ldapdock latest 0e4a1521b346 6 hours ago 138MB ldapdock latest 0e4a1521b346 6 hours ago 138MB
``` ```
run into the container for the first time to check the LDAP server run into the container for the first time to setup the LDAP server
``` ```
> docker run -i -t ldapdock /bin/bash > docker run -i -t ldapdock /bin/bash
``` ```
### Inside the ldapdock image
edit base configuration of openLDAP server
```
> vim /etc/ldap/ldap.conf
```
start the openLDAP daemon server
```
> service slapd start
* Starting OpenLDAP slapd [ OK ]
```