Last MinIO with original UI for creating access keys, secret keys & buckets
388
This image preserves the original MinIO frontend experience, allowing you to create Access Keys, Secret Keys, and Buckets directly through the web interface.
Image: garfieldwtf/minio:2025.2.28
This is the last MinIO release that includes the classic frontend where you can:
Starting from versions after 2025.2.28, MinIO has removed or restricted these capabilities from the built-in web interface.
Based on bitnami/minio:2025.2.28 - the official Bitnami image of the final classic UI release.
services:
minio:
image: garfieldwtf/minio:2025.2.28
ports:
- 9000:9000
- 9001:9001
environment:
MINIO_ROOT_USER: "root"
MINIO_ROOT_PASSWORD: "1234asdf"
# MINIO_SERVER_URL: "minio.example.com" # Uncomment for custom domain
volumes:
- /data/docker/minio2:/bitnami/minio/data
docker run -d \
--name minio \
-p 9000:9000 \
-p 9001:9001 \
-e MINIO_ROOT_USER="root" \
-e MINIO_ROOT_PASSWORD="1234asdf" \
-v /data/docker/minio2:/bitnami/minio/data \
garfieldwtf/minio:2025.2.28
| Port | Purpose |
|---|---|
| 9000 | MinIO API (S3-compatible) |
| 9001 | MinIO Web Console (Web UI) |
| Variable | Description | Required |
|---|---|---|
MINIO_ROOT_USER | Root username for admin access | Yes |
MINIO_ROOT_PASSWORD | Root password (minimum 8 characters) | Yes |
MINIO_SERVER_URL | Public URL for the MinIO server (optional) | No |
http://localhost:9001MINIO_ROOT_USER and MINIO_ROOT_PASSWORDData is stored in /bitnami/minio/data. Mount this directory to a host volume for persistent storage.
This image is provided as-is for users who need the legacy MinIO web UI functionality. No active development or updates will be provided beyond the 2025.2.28 release.
Same as the original MinIO project - GNU AGPLv3.
A personal rebuild based on pgsty/minio, a community-maintained fork of MinIO with the full admin console restored.
The official minio/minio image removed admin console features (access key management, user/group management, bucket policies, lifecycle rules) from the community edition in May 2025, restricting them to a paid AIStor license. This image restores full console functionality by embedding georgmangold/console — a community-maintained fork of the original MinIO console.
| Feature | minio/minio (official) | garfieldwtf/minio:pgsty |
|---|---|---|
| S3 API (port 9000) | ✅ | ✅ |
| Console UI (port 9001) | ⚠️ Read-only | ✅ Full |
| Access key management | ❌ Paywalled | ✅ |
| User / group management | ❌ Paywalled | ✅ |
| Bucket policy management | ❌ Paywalled | ✅ |
| Lifecycle rules | ❌ Paywalled | ✅ |
docker run -p 9000:9000 -p 9001:9001 \
-e MINIO_ROOT_USER=admin \
-e MINIO_ROOT_PASSWORD=changeme123 \
-v minio_data:/data \
garfieldwtf/minio:pgsty \
server /data --console-address :9001
services:
minio:
image: garfieldwtf/minio:pgsty
container_name: minio
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ROOT_USER: admin
MINIO_ROOT_PASSWORD: changeme123
volumes:
- minio_data:/data
command: server /data --console-address :9001
restart: unless-stopped
volumes:
minio_data:
| Interface | URL |
|---|---|
| S3 API | http://your-host:9000 |
| Console UI | http://your-host:9001 |
minio/minio — same ports, env vars, volumes, and mc commandsNot affiliated with or endorsed by MinIO, Inc. or the pgsty project. "MinIO" is a trademark of MinIO, Inc.
Content type
Image
Digest
sha256:b6bfe7239…
Size
52 MB
Last updated
about 1 month ago
docker pull garfieldwtf/minio:pgsty