add docker ldap
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed

This commit is contained in:
Schuhmacher 2025-03-31 13:55:46 +02:00
parent f30599b229
commit ae30dbc1e6

View file

@ -22,6 +22,28 @@ services:
volumes:
- redis:/data
openldap:
image: osixia/openldap:latest
container_name: openldap
restart: unless-stopped
environment:
LDAP_ORGANISATION: "Schule"
LDAP_DOMAIN: "Schule.intern"
LDAP_ADMIN_PASSWORD: ${LDAP_ADMIN_PASSWORD}
ports:
- "389:389"
- "636:636"
volumes:
- openldap_data:/var/lib/ldap
- openldap_config:/etc/ldap/slapd.d
healthcheck:
test: ["CMD", "ldapsearch", "-x", "-H", "ldap://localhost", "-b", "dc=Schule,dc=intern"]
interval: 30s
retries: 3
volumes:
postgres_data:
redis:
openldap_data:
openldap_config: