From 8131e42d2e3c49a1203a6a816253dbc993b004b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sch=C3=B6dl?= Date: Mon, 24 Nov 2025 07:42:01 +0000 Subject: [PATCH] =?UTF-8?q?lldap-docker-compose.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lldap-docker-compose.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..9cbe265 --- /dev/null +++ b/lldap-docker-compose.yml @@ -0,0 +1,20 @@ +# docker-compose.yml +version: "3.8" +services: + lldap: + image: nitowa/lldap:latest + ports: ["3890:3890", "17170:80"] + volumes: ["./lldap_data:/data"] + restart: unless-stopped + environment: + LLDAP_JWT_SECRET: "superstarkesgeheimnis123" + LLDAP_LDAP_BASE_DN: "dc=schoedl,dc=local" + + authelia: + image: authelia/authelia:latest + ports: ["9091:9091"] + volumes: ["./authelia:/config"] + restart: unless-stopped + environment: + TZ: Europe/Berlin + \ No newline at end of file