groupware: add recipe for using ldapsearch in an Alpine container to DEVELOPER.md

This commit is contained in:
Pascal Bleser
2025-10-23 10:14:54 +02:00
parent 5b98feeb32
commit 463c9477c2

View File

@@ -422,6 +422,19 @@ In that container, install the necessary packages to have the LDAP command-line
apt-get update -y && apt-get install -y ca-certificates ldap-utils
```
Alternatively, the same can be achieved with an Alpine container:
```bash
docker run --network 'opencloud_full_opencloud-net' --rm \
--name "alpine-${RANDOM}" -ti 'alpine'
```
And running this command instead to install the LDAP command-line tools:
```bash
apk update && apk install openldap-clients
```
Run the following command in that container, which should output a list of DNs of demo users:
```bash