From 6f5940011da0e7e9f010c5c4b19a2c3321c6f521 Mon Sep 17 00:00:00 2001 From: John Anderson Date: Mon, 17 Aug 2026 18:09:48 +0100 Subject: [PATCH] Add lldap/docker-compose.yml --- lldap/docker-compose.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lldap/docker-compose.yml diff --git a/lldap/docker-compose.yml b/lldap/docker-compose.yml new file mode 100644 index 0000000..4ad5197 --- /dev/null +++ b/lldap/docker-compose.yml @@ -0,0 +1,13 @@ +services: + lldap: + image: lldap/lldap:stable + container_name: lldap + ports: + - "3890:3890" # LDAP port + - "17170:17170" # Web UI port + volumes: + - /docker/lldap/data:/data + environment: + LLDAP_JWT_SECRET: "/K{5T.'-zR,W*gg|xI,u-[/[5.1?HI-S" + LLDAP_LDAP_USER_PASS: "Password1" # Change this! + restart: unless-stopped \ No newline at end of file