openldap: add
This commit is contained in:
parent
8f3069776d
commit
c311fa2798
|
@ -13,6 +13,7 @@ include:
|
||||||
- services/postgres.yml
|
- services/postgres.yml
|
||||||
- services/nextcloud.yml
|
- services/nextcloud.yml
|
||||||
- services/sabnzbd.yml
|
- services/sabnzbd.yml
|
||||||
|
- services/openldap.yml
|
||||||
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
---
|
||||||
|
services:
|
||||||
|
openldap:
|
||||||
|
image: osixia/openldap:latest
|
||||||
|
container_name: openldap
|
||||||
|
networks:
|
||||||
|
public:
|
||||||
|
ipv4_address: 192.168.240.42
|
||||||
|
ports:
|
||||||
|
- 389:389
|
||||||
|
- 636:636
|
||||||
|
volumes:
|
||||||
|
- "${DOCKER_STORAGE_PATH}/openldap/config:/etc/ldap/slapd.d"
|
||||||
|
- "${DOCKER_STORAGE_PATH}/openldap/data:/var/lib/ldap"
|
||||||
|
environment:
|
||||||
|
- LDAP_ORGANISATION=Homelab
|
||||||
|
- LDAP_DOMAIN=${DOMAIN}
|
||||||
|
- LDAP_ADMIN_PASSWORD=kral
|
||||||
|
- LDAP_OPENLDAP_UID=${PUID}
|
||||||
|
- LDAP_OPENLDAP_GID=${PGID}
|
||||||
|
- LDAP_READONLY_USER=true
|
||||||
|
- LDAP_READONLY_USER_USERNAME=readonly
|
||||||
|
- LDAP_READONLY_USER_PASSWORD=readonly
|
||||||
|
profiles:
|
||||||
|
- base
|
||||||
|
restart: unless-stopped
|
Loading…
Reference in New Issue