forked from dnknth/ldap-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
33 lines (31 loc) · 897 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: '3'
services:
ldap:
image: mwaeckerlin/openldap
ports:
- 127.0.0.1:389:389
volumes:
- ./data:/var/restore
environment:
DOMAIN: flintstones.com
DEBUG: 256
ACCESS_RULES: |
access to attrs=userPassword
by anonymous auth
by self write
by * none
access to *
by * read
restart: unless-stopped
ldap-ui:
image: dnknth/ldap-ui
ports:
- 127.0.0.1:5000:5000
links:
- ldap
environment:
LDAP_URL: "ldap://ldap/"
BASE_DN: "dc=flintstones,dc=com"
BIND_DN: "cn=Fred Flintstone,ou=People,dc=flintstones,dc=com"
BIND_PASSWORD: yabbadabbado
restart: unless-stopped