17 lines
526 B
YAML
17 lines
526 B
YAML
# Originally sourced from https://github.com/Alfresco/acs-deployment/blob/4.0.3/docker-compose/docker-compose.yml
|
|
#
|
|
version: "3"
|
|
|
|
services:
|
|
|
|
directory:
|
|
image: osixia/openldap:1.4.0
|
|
environment:
|
|
LDAP_ORGANISATION: "Example Organization"
|
|
LDAP_DOMAIN: example.org
|
|
LDAP_ADMIN_PASSWORD: admin
|
|
command: "--copy-service --loglevel=debug"
|
|
volumes:
|
|
- ./openldap-example.ldif:/container/service/slapd/assets/config/bootstrap/ldif/50-bootstrap.ldif:ro
|
|
|