Sign inSign up

moinologics/minio-alpine

By moinologics

•Updated over 2 years ago

minio alpine based small image

Image
0

360

moinologics/minio-alpine repository overview

⁠Tiny Minio Docker Image based On Alpine Linux

MinIO®⁠ is an object storage server, compatible with Amazon S3 cloud storage service, mainly used for storing unstructured data (such as photos, videos, log files, etc.).


⁠Dockerfile
FROM curlimages/curl as builder

WORKDIR /tmp

ARG TARGETARCH   # this will be set automatically by docker build command

RUN curl -O "https://dl.min.io/server/minio/release/linux-$TARGETARCH/minio"

RUN chmod +x minio

FROM alpine:latest

ENV MINIO_CONSOLE_ADDRESS=:10000

COPY --from=builder /tmp/minio /usr/bin/minio

VOLUME [ "/data" ]

EXPOSE 9000 10000

CMD ["minio", "server", "/data"]

Tag summary

Content type

Image

Digest

sha256:df341a538…

Size

35.6 MB

Last updated

over 2 years ago

docker pull moinologics/minio-alpine