NoEnv / docker-openldap

OpenLDAP as Docker Image

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docs on environment variables

progsmile opened this issue · comments

Hello dear maintainers!
Where can I find description what environment variables should be used?
Thanks.

there aren't any... the idea is to mount the configuration and data directory into the container without doing any magic on the entrypoint script

example run command would be something like: docker run -d -p 389:389 -v /opt/ldap/conf:/etc/ldap -v /opt/ldap/db:/var/lib/ldap noenv/openldap

Ok, I've got it. Thanks!