feat: add basic ds389 docker setup and configuration
Signed-off-by: Bert-Jan Fikse <bert-jan@whatwedo.ch>
This commit is contained in:
parent
dae32362ed
commit
700cafed0e
3 changed files with 70 additions and 0 deletions
|
|
@ -1,3 +1,26 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue