Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I disable the Minio web GUI?

Tags:

docker

minio

I wonder if it is possible to disable the Minio GUI and only expose the REST API.

I am using the Docker image minio/minio and have to run Minio under a sub-path like example.com/the/path/to/minio, which is not supported by Minio and breaks the graphical UI.

like image 900
Datz Avatar asked Dec 24 '22 00:12

Datz


1 Answers

Setting MINIO_BROWSER env should disable the minio browser

MINIO_BROWSER=off

like image 148
Kanagaraj M Avatar answered Jan 04 '23 23:01

Kanagaraj M