diff --git a/examples/authentik_ldap/docker-compose.yml b/examples/authentik_ldap/docker-compose.yml index 510df0b9..9d357d9d 100644 --- a/examples/authentik_ldap/docker-compose.yml +++ b/examples/authentik_ldap/docker-compose.yml @@ -81,7 +81,7 @@ services: SEMAPHORE_LDAP_SERVER: "ldap:3389" SEMAPHORE_LDAP_SEARCH_DN: "ou=users,dc=ldap,dc=goauthentik,dc=io" SEMAPHORE_LDAP_BIND_DN: "cn=ldapservice,ou=users,dc=ldap,dc=goauthentik,dc=io" - SEMAPHORE_LDAP_USERFILTER: "(&(objectClass=inetOrgPerson)(cn=%s))" + SEMAPHORE_LDAP_SEARCH_FILTER: "(&(objectClass=inetOrgPerson)(cn=%s))" SEMAPHORE_NON_ADMIN_CAN_CREATE_PROJECT: "yes" SEMAPHORE_LDAP_MAPPING_DN: "dn" SEMAPHORE_LDAP_MAPPING_MAIL: "mail" diff --git a/examples/openldap/docker-compose.yml b/examples/openldap/docker-compose.yml index 46603677..fb36e1f3 100644 --- a/examples/openldap/docker-compose.yml +++ b/examples/openldap/docker-compose.yml @@ -38,7 +38,7 @@ services: SEMAPHORE_LDAP_SEARCH_DN: "dc=example,dc=org" SEMAPHORE_LDAP_BIND_DN: "cn=admin,dc=example,dc=org" SEMAPHORE_LDAP_BIND_PASSWORD: "admin" - SEMAPHORE_LDAP_USERFILTER: "(&(objectClass=inetOrgPerson)(uid=%s))" + SEMAPHORE_LDAP_SEARCH_FILTER: "(&(objectClass=inetOrgPerson)(uid=%s))" SEMAPHORE_NON_ADMIN_CAN_CREATE_PROJECT: "yes" ports: - "3000:3000"