mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
18 lines
357 B
YAML
18 lines
357 B
YAML
|
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
|