yamldap 0.1.3

A lightweight LDAP server that serves directory data from YAML files
Documentation
---
services:
  yamldap:
    build: 
      context: .
      platforms:
        - linux/amd64
    ports:
      - "389:389"
    volumes:
      - ./examples/sample_directory.yaml:/data/directory.yaml:ro
    environment:
      - RUST_LOG=info
    command: ["-f", "/data/directory.yaml", "--allow-anonymous"]

  # Optional: LDAP admin tool for testing
  ldapadmin:
    image: osixia/phpldapadmin:latest
    environment:
      - PHPLDAPADMIN_LDAP_HOSTS=yamldap
      - PHPLDAPADMIN_HTTPS=false
    ports:
      - "8080:80"
    depends_on:
      - yamldap