mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
55dd017e62
There is no reliable way to handle fallbacks for MinIO deployments, due to various command line options and multiple locations which require access inside container. Parsing command line options is tricky to figure out which is the backend disk etc, we did try to fix this in implementations of check-user.go but it wasn't complete and introduced more bugs. This PR simplifies the entire approach to rather than running Docker container as non-root by default always, it allows users to opt-in. Such that they are aware that that is what they are planning to do. In-fact there are other ways docker containers can be run as regular users, without modifying our internal behavior and adding more complexities.
25 lines
262 B
Plaintext
25 lines
262 B
Plaintext
**/*.swp
|
|
cover.out
|
|
*~
|
|
minio
|
|
!*/
|
|
site/
|
|
**/*.test
|
|
**/*.sublime-workspace
|
|
/.idea/
|
|
/Minio.iml
|
|
**/access.log
|
|
vendor/**/*.js
|
|
vendor/**/*.json
|
|
release
|
|
.DS_Store
|
|
*.syso
|
|
coverage.txt
|
|
.vscode/
|
|
*.tar.bz2
|
|
parts/
|
|
prime/
|
|
stage/
|
|
.sia_temp/
|
|
config.json
|
|
dockerscripts/healthcheck |