Update README.md

This commit is contained in:
Marisa 2025-09-25 10:45:55 -04:00
parent 71b76edfef
commit 6456f2f5f0

View File

@ -23,12 +23,12 @@ You can run into the container in an interactive way already with this command:
```
> docker run -h example.com -i -t ldapdock /bin/bash
```
With -h we are specifying the name of the host, we are using example.com, this is very important.\
If you wish (and it is recommended in development) to save the configuration and LDAP directory structure (also called LDAP database) outside of the container, run this command instead:
```
> docker run -h example.com -i -t -v ldap_data:/var/lib/ldap -v ldap_config:/etc/ldap/slapd.d ldapdock /bin/bash
```
With -h we are specifying the name of the host, we are using example.com, this is very important. -i tells docker to run in an interactive way instead of running the container in the background. -t goes in hand with -i, and allocates a tty (terminal) so we can run commands. -v mounts a volume to save information (we use one to save the data and another one to save the configuration).
## _Explaining DN, parentDN, CN, and DC as parameters_