2023-09-25 22:42:46 +00:00
|
|
|
services:
|
|
|
|
minio:
|
2023-09-26 13:18:10 +00:00
|
|
|
image: docker.io/minio/minio:RELEASE.2023-09-20T22-49-55Z
|
2023-09-25 22:42:46 +00:00
|
|
|
command: server /data --console-address ":9001"
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
|
|
|
interval: 5s
|
|
|
|
timeout: 5s
|
|
|
|
retries: 10
|
|
|
|
ports:
|
|
|
|
- "9000:9000"
|
|
|
|
- "9001:9001"
|
|
|
|
environment:
|
|
|
|
MINIO_ROOT_USER: distribution
|
|
|
|
MINIO_ROOT_PASSWORD: password
|
|
|
|
volumes:
|
|
|
|
- ./miniodata/distribution:/data
|
|
|
|
|
|
|
|
minio-init:
|
2023-09-26 13:18:21 +00:00
|
|
|
image: docker.io/minio/mc:RELEASE.2023-02-16T19-20-11Z
|
2023-09-25 22:42:46 +00:00
|
|
|
depends_on:
|
|
|
|
minio:
|
|
|
|
condition: service_healthy
|
|
|
|
entrypoint: >
|
|
|
|
/bin/bash -c "
|
|
|
|
/usr/bin/mc config host add minio http://minio:9000 $${MINIO_ROOT_USER} $${MINIO_ROOT_PASSWORD} && (
|
|
|
|
/usr/bin/mc stat minio/images-local || /usr/bin/mc mb minio/images-local
|
|
|
|
) && /usr/bin/mc anonymous set public minio/images-local && /usr/bin/mc admin trace --path "
|
|
|
|
environment:
|
|
|
|
MINIO_ROOT_USER: distribution
|
|
|
|
MINIO_ROOT_PASSWORD: password
|