Recently, I ran into a frustrating issue when running MinIO in Docker using the official tag minio/minio:latest.
The web console opens, but it shows up as "Community Edition" with severely limited features: basically just the object browser. No user management, policies, access keys, advanced configurations... all of that vanished from the GUI. 😩
I ended up relying on mc (MinIO Client) to handle almost everything, which works fine but loses the convenience of the browser interface.
After researching and testing several tags, I found a simple solution that restored the complete console (with all admin features visible):
Instead of minio/minio:latest, I'm using this image:
quay.io/minio/minio:RELEASE.2025-04-22T22-12-26Z
With this specific tag (an April 2025 release), the console goes back to normal: full browser access, no restrictions from the newer "Community Edition."
Quick example with docker-compose:
It's been running stable for me for weeks. If you're hitting the same issue with the latest tag, try this older one — it might save you a lot of time!
Has anyone else dealt with this? Or have a better workaround/solution? Share in the comments! 👇

Top comments (0)