dfg
This commit is contained in:
parent
689d058283
commit
ab11ec3e9c
1 changed files with 14 additions and 3 deletions
|
@ -12,9 +12,20 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- data:/data
|
- data:/data
|
||||||
environment:
|
environment:
|
||||||
- MINIO_ROOT_USER=madmin
|
MINIO_ROOT_USER: madmin # ändern
|
||||||
- MINIO_ROOT_PASSWORD=hallowelt
|
MINIO_ROOT_PASSWORD: hallowelt # ändern
|
||||||
- MINIO_DEFAULT_BUCKETS=bucket1
|
|
||||||
|
|
||||||
|
MINIO_IDENTITY_LDAP_SERVER_ADDR: "ldap.mgrote.net:636"
|
||||||
|
MINIO_IDENTITY_LDAP_TLS_SKIP_VERIFY: "on"
|
||||||
|
MINIO_IDENTITY_LDAP_SERVER_INSECURE: "on"
|
||||||
|
MINIO_IDENTITY_LDAP_LOOKUP_BIND_DN: "minio_bind_user"
|
||||||
|
MINIO_IDENTITY_LDAP_LOOKUP_BIND_PASSWORD: "hallowelt"
|
||||||
|
MINIO_IDENTITY_LDAP_USER_DN_SEARCH_BASE_DN: "ou=people,,dc=mgrote,dc=net"
|
||||||
|
# allow all users to login; they need a policy attached before they can actually do anything
|
||||||
|
MINIO_IDENTITY_LDAP_USER_DN_SEARCH_FILTER: "(&(objectclass=posixAccount)(uid=%s))"
|
||||||
|
MINIO_IDENTITY_LDAP_GROUP_SEARCH_BASE_DN: "ou=groups,,dc=mgrote,dc=net"
|
||||||
|
MINIO_IDENTITY_LDAP_GROUP_SEARCH_FILTER: "(&(objectclass=groupOfUniqueNames)(member=%d))"
|
||||||
command: server /data --console-address ":9001"
|
command: server /data --console-address ":9001"
|
||||||
|
|
||||||
######## Networks ########
|
######## Networks ########
|
||||||
|
|
Loading…
Reference in a new issue