26 lines
No EOL
776 B
YAML
26 lines
No EOL
776 B
YAML
#SPDX-License-Identifier: MIT-0
|
|
---
|
|
# defaults file for 389ds
|
|
|
|
# Base directory configuration (inherited from base role or defined here)
|
|
docker_compose_base_dir: /etc/docker/compose
|
|
docker_volume_base_dir: /srv/data
|
|
|
|
# 389ds-specific configuration
|
|
ds389_service_name: 389ds
|
|
ds389_docker_compose_dir: "{{ docker_compose_base_dir }}/{{ ds389_service_name }}"
|
|
ds389_docker_volume_dir: "{{ docker_volume_base_dir }}/{{ ds389_service_name }}"
|
|
|
|
# 389ds service configuration
|
|
ds389_image: "docker.io/389ds/dirsrv:3.1"
|
|
ds389_suffix: "dc=example,dc=com"
|
|
ds389_root_dn: "cn=Directory Manager"
|
|
ds389_root_password: "changeme"
|
|
|
|
# Instance configuration
|
|
ds389_instance_name: "localhost"
|
|
|
|
# Network configuration
|
|
ds389_backend_network: "backend"
|
|
ds389_ldap_port: 3389
|
|
ds389_ldaps_port: 3636 |