- Notifications
You must be signed in to change notification settings - Fork 292
/
Copy pathdocker-compose.yml
31 lines (29 loc) · 795 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
services:
lldap:
image: lldap/lldap:stable
container_name: lldap
hostname: lldap
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lldap/data:/data # For the config file, server private key and the sqlite database.
environment:
- LLDAP_JWT_SECRET=CHANGEME
- LLDAP_LDAP_USER_PASS=CHANGEME
- LLDAP_LDAP_BASE_DN=dc=example,dc=com
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
ports:
- 3890:3890# LDAP
- 17170:17170# WEB UI
expose:
- 3890
- 17170
#networks:
# - proxy
#labels:
# - traefik.enable=true
# - traefik.http.routers.lldap.rule=Host(`lldap.example.com`)
# - traefik.http.services.lldap.loadbalancer.server.port=17170
#networks:
# proxy:
# external: true