From 6a9d882fe50be46ce35d398e012886319ec3a363 Mon Sep 17 00:00:00 2001 From: Marisa Date: Fri, 12 Sep 2025 09:26:42 -0400 Subject: [PATCH] Update README.md --- README.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0a2f2ce..287b86f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # ldapdock **_a configurable container running LDAP_** -most important steps +most important steps to run the daemon server, some steps are NOT neccesary build ldapdock ``` @@ -15,7 +15,20 @@ REPOSITORY TAG IMAGE ID CREATED SIZE 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 -``` \ No newline at end of file +``` + +### 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 ] + ``` \ No newline at end of file