groupware: docs: add a quick copy-pastable block for running ldapsearch

This commit is contained in:
Pascal Bleser
2026-03-24 10:06:02 +01:00
parent 0f841e82d3
commit 56a8a6cfd2

View File

@@ -615,6 +615,13 @@ docker run --network 'opencloud_full_opencloud-net' --rm -ti alpine:3 \
/bin/sh -c "apk update && apk add openldap-clients && exec /bin/sh -il"
```
Or, to combine it directly with the `ldapsearch` command:
```bash
docker run --network 'opencloud_full_opencloud-net' --rm alpine \
/bin/sh -c "apk update -q && apk add -q openldap-clients && LDAPTLS_REQCERT=never ldapsearch -H 'ldaps://opencloud:9235' -D 'uid=reva,ou=sysusers,o=libregraph-idm' -x -w 'admin' -b 'o=libregraph-idm' -LLL '(objectClass=person)' dn"
```
### Testing Keycloak
> [!NOTE]