OpenLDAP

OpenLDAP is primarily used for sharing the list of users across all computers/ virtual machines and docker images.

It runs are a docker image under portainer - see details from docker-compose file below.

It appears to run as uid=911, gid=911 - so I need to create that as a user in TrueNAS to change directory ownership.

version: '3.3'

volumes:
  ldap-config:
    external: true
  ldap-data:
    external: true

services:
  ldap:
    image: osixia/openldap:latest
    restart: unless-stopped
    volumes:
      - ldap-config:/etc/ldap/slapd.d
      - ldap-data:/var/lib/ldap
    ports:
      - 389:389
      - 636:636