1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-08-06 22:23:10 +02:00

add lldap

This commit is contained in:
kev
2023-10-18 15:23:04 +08:00
parent 2edde81232
commit 53f571167c
3 changed files with 25 additions and 0 deletions

7
lldap/README.md Normal file
View File

@ -0,0 +1,7 @@
lldap
=====
[lldap][1] is a lightweight authentication server that provides an opinionated,
simplified LDAP interface for authentication.
[1]: https://github.com/lldap/lldap

17
lldap/docker-compose.yml Normal file
View File

@ -0,0 +1,17 @@
version: "3.8"
services:
lldap:
image: lldap/lldap:stable
ports:
- "3890:3890"
- "17170:17170"
volumes:
- ./data:/data
environment:
- UID=1000
- GID=1000
- TZ=UTC
- LLDAP_JWT_SECRET=******
- LLDAP_LDAP_USER_PASS=admin
- LLDAP_LDAP_BASE_DN=dc=example,dc=com
restart: unless-stopped