2024-05-17 07:49:08 +00:00
|
|
|
FROM minio/minio
|
2024-05-17 09:19:40 +00:00
|
|
|
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
|
|
|
|
org.label-schema.vcs-url="https://github.com/benzine-framework/docker-minio" \
|
|
|
|
org.opencontainers.image.source="https://github.com/benzine-framework/docker-minio"
|
2024-05-17 07:49:08 +00:00
|
|
|
HEALTHCHECK --interval=5s --timeout=3s --start-period=0s --retries=5 \
|
|
|
|
CMD mc ping local -c 1 -q
|
|
|
|
CMD ["server", "--console-address", ":9001", "/data"]
|