docker-compose/ldap-user-manager/docker-compose.yml
2022-08-19 02:25:57 -04:00

21 lines
563 B
YAML

version: "3.7"
services:
lum:
image: wheelybird/ldap-user-manager:latest
environment:
- "SERVER_HOSTNAME=lum.$app_domain"
- "LDAP_URI=$ldap_uri"
- "LDAP_BASE_DN=$ldap_base_dn"
- "LDAP_ADMINS_GROUP=admins"
- "LDAP_ADMIN_BIND_DN=$ldap_admin_bind_dn"
- "LDAP_ADMIN_BIND_PWD=$ldap_admin_bind_passwd"
- "LDAP_IGNORE_CERT_ERRORS=true"
- "NO_HTTPS=true" # Tofix, we can't use: ldap_tls here ...
- "ACCEPT_WEAK_PASSWORDS=true"
# MrJK Tweaking
- "USERNAME_REGEX=^[a-z][a-zA-Z0-9._-]{2,32}$$"