1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-24 07:48:38 +00: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

@ -409,6 +409,7 @@ A collection of delicious docker recipes.
- [x] mongo
- [x] ccrisan/motioneye
- [x] neo4j
- [x] lldap/lldap
- [x] luzifer/nginx-sso
- [x] n8nio/n8n
- [x] illuspas/node-media-server :cn:

7
lldap/README.md Normal 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

@ -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