qkie!
09/29/2025, 8:30 PMversion: "3"
services:
lldap:
image: lldap/lldap:stable
container_name: lldap
hostname: lldap
ports:
# For LDAP, not recommended to expose, see Usage section.
#- "3890:3890"
# For LDAPS (LDAP Over SSL), enable port if LLDAP_LDAPS_OPTIONS__ENABLED set true, look env below
#- "6360:6360"
# For the web front-end
- "17170:17170"
volumes:
- "./data:/data"
networks:
- ldap
environment:
- TZ="Europe/Berlin"
- LLDAP_JWT_SECRET=redacted;
- LLDAP_KEY_SEED=redacted;
- LLDAP_LDAP_BASE_DN=dc=redacted,dc=redacted
networks:
ldap:
name: ldap
external: true
relevant part of data/lldap_config.toml:
# verbose=false
ldap_host = "0.0.0.0"
ldap_port = 3890
http_host = "0.0.0.0"
http_port = 17170
http_url = "http://oops"
logs show no errors
i'm positive it's a big me-problem but i can't seem to wrap my head around itAnswer Overflow
09/29/2025, 8:30 PMqkie!
09/29/2025, 9:04 PMnitnelave
09/29/2025, 9:12 PM