Setup mail server with ldap authentication in docker
Getting an email server to run in docker is easy but getting an email server with ldap authentication to run in docker spend me a week to get up and running. Here are the steps that I taken. I will assume you already know how to install docker. Install LDAP. docker run \ --detach \ --restart unless-stopped \ --name openldap \ -e LDAP_ORGANISATION=domain \ -e LDAP_DOMAIN=domain.com \ -e LDAP_ADMIN_PASSWORD=complex-password \ -e LDAP_RFC2307BIS_SCHEMA=true \ -e LDAP_REMOVE_CONFIG_AFTER_SETUP=true \ -e LDAP_TLS=false \ -p 389:389 \ --volume /data/openldap/var_lib_ldap:/var/lib/ldap \ --volume /data/openldap/etc_ldap_slapd.d:/etc/ldap/slapd.d \ osixia/openldap:latest Install postfix-book schema into the ldap. # cd /etc/ldap/schema # apt update # apt install vim wget # wget https://raw.githubusercontent.com/variablenix/ldap-
Comments
Post a Comment
Feel free to leave your question or comment here, we will reply you as soon as possible.