mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
19 lines
522 B
YAML
19 lines
522 B
YAML
services:
|
|
open-ldap:
|
|
image: bitnamilegacy/openldap:latest
|
|
hostname: openldap
|
|
environment:
|
|
- LDAP_ADMIN_USERNAME=admin
|
|
- LDAP_ADMIN_PASSWORD=admin
|
|
- LDAP_ROOT=dc=bitwarden,dc=com
|
|
- LDAP_ENABLE_TLS=yes
|
|
- LDAP_TLS_CERT_FILE=/certs/openldap.pem
|
|
- LDAP_TLS_KEY_FILE=/certs/openldap-key.pem
|
|
- LDAP_TLS_CA_FILE=/certs/rootCA.pem
|
|
volumes:
|
|
- "./utils/openldap/ldifs:/ldifs"
|
|
- "./utils/openldap/certs:/certs"
|
|
ports:
|
|
- "1389:1389"
|
|
- "1636:1636"
|