diff --git a/README.md b/README.md index c14116c..aece5dc 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/lldap/README.md b/lldap/README.md new file mode 100644 index 0000000..4a9d7f9 --- /dev/null +++ b/lldap/README.md @@ -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 diff --git a/lldap/docker-compose.yml b/lldap/docker-compose.yml new file mode 100644 index 0000000..52c1ee4 --- /dev/null +++ b/lldap/docker-compose.yml @@ -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