mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 17:56:53 +02:00
add lldap
This commit is contained in:
parent
2edde81232
commit
53f571167c
@ -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
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
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
|
Loading…
Reference in New Issue
Block a user