From 63d49c7074716088b41b0cbec97c3059e1e9a77b Mon Sep 17 00:00:00 2001 From: ryuupendragon Date: Sat, 9 Aug 2025 13:45:04 +0530 Subject: [PATCH] Archive lldap --- .archived/lldap/docker-compose.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .archived/lldap/docker-compose.yml diff --git a/.archived/lldap/docker-compose.yml b/.archived/lldap/docker-compose.yml new file mode 100644 index 0000000..11dcb0f --- /dev/null +++ b/.archived/lldap/docker-compose.yml @@ -0,0 +1,23 @@ +services: + lldap: + container_name: lldap + image: ghcr.io/lldap/lldap:v0.6.1-alpine-rootless + restart: unless-stopped + environment: + - UID=${PUID} + - GID=${PGID} + - TZ=${TZ} + - LLDAP_JWT_SECRET=${LLDAP_JWT_SECRET} + - LLDAP_KEY_SEED=${LLDAP_KEY_SEED} + - LLDAP_LDAP_BASE_DN=${LLDAP_LDAP_BASE_DN} + - LLDAP_LDAP_USER_PASS=${LLDAP_LDAP_USER_PASS} + volumes: + - ${APPDATA_PATH}/lldap/data:/data + ports: + - ${PORT}:17170 + networks: + - frontend + +networks: + frontend: + external: true