21 lines
683 B
YAML
21 lines
683 B
YAML
# documentation: https://docs.min.io/docs/minio-docker-quickstart-guide.html
|
|
# slogan: MinIO is a high performance object storage server compatible with Amazon S3 APIs.
|
|
# tags: object, storage, server, s3, api
|
|
|
|
services:
|
|
minio:
|
|
image: quay.io/minio/minio:latest
|
|
command: server /data --console-address ":9001"
|
|
environment:
|
|
SERVICE_FQDN_MINIO_9000:
|
|
SERVICE_FQDN_CONSOLE_9001:
|
|
MINIO_ROOT_USER: $SERVICE_USER_MINIO
|
|
MINIO_ROOT_PASSWORD: $SERVICE_PASSWORD_MINIO
|
|
volumes:
|
|
- minio-data:/data
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
|
interval: 5s
|
|
timeout: 20s
|
|
retries: 10
|