mirror of
https://github.com/minio/minio.git
synced 2024-12-26 15:15:55 -05:00
dcff6c996d
delete marked objects should not be considered for listing when listing is delimited, this issue as introduced in PR #13804 which was mainly to address listing of directories in listing when delimited. This PR fixes this properly and adds tests to ensure that we behave in accordance with how an S3 API behaves for ListObjects() without versions.
15 lines
325 B
YAML
15 lines
325 B
YAML
# To run locally an OpenLDAP instance using Docker
|
|
# $ docker-compose -f ldap.yaml up -d
|
|
version: '3.7'
|
|
|
|
services:
|
|
openldap:
|
|
image: quay.io/minio/openldap
|
|
ports:
|
|
- "389:389"
|
|
- "636:636"
|
|
environment:
|
|
LDAP_ORGANIZATION: "MinIO Inc"
|
|
LDAP_DOMAIN: "min.io"
|
|
LDAP_ADMIN_PASSWORD: "admin"
|