Minio Docker container which provides the Minio S3 server bundled together with the mc admin tool.
10K+
Container Source - GitHub Mirror
This is the Conarx Containers Minio image, it provides the Minio S3 server and Minio Client within the same Docker image.
| Provider | Repository |
|---|---|
| DockerHub | allworldit/minio |
| Conarx | registry.conarx.tech/containers/minio |
All our Docker images are part of our Conarx Containers product line. Images are generally based on Alpine Linux and track the
Alpine Linux major and minor version in the format of vXX.YY.
Images built from source track both the Alpine Linux major and minor versions in addition to the main software component being
built in the format of vXX.YY-AA.BB, where AA.BB is the main software component version.
Our images are built using our Flexible Docker Containers framework which includes the below features...
Please use the project Issue Tracker.
Commercial support for all our Docker images is available from Conarx.
We also provide consulting services to create and maintain Docker images to meet your exact needs.
Additional environment variables are available from...
Options passed to minio server, defaults to /var/lib/minio.
Username to use, this will default to minioadmin if not specified which is terribly insecure.
Password to use for for the root user, this will default to minioadmin if not specified which is terribly insecure.
All other environment variables beginning with MINIO_ will be passed to Minio.
Minio data directory. This should be on an XFS filesystem as recommended in the Minio documentation.
Minio port 9000 and 9001 is exposed.
The s3 mc alias is setup automatically.
The Minio admin command can be executed from the host using...
docker-compose exec minio mc ls s3\mybucket
version: '3.9'
services:
minio:
image: registry.gitlab.iitsp.com/allworldit/docker/minio/v3.17:latest
environment:
- MINIO_BROWSER_REDIRECT_URL=https://console.s3.countrya-1.example.com
- MINIO_ROOT_USER=xxxxx
- MINIO_ROOT_PASSWORD=aaaaa
volumes:
- ./data:/var/lib/minio
ports:
- '9000:9000'
- '9001:9001'
extra_hosts:
- "s3.countrya-1.example.com:172.16.0.1"
networks:
- internal
networks:
internal:
driver: bridge
enable_ipv6: true
Content type
Image
Digest
sha256:739e373be…
Size
79.5 MB
Last updated
4 days ago
docker pull allworldit/minio