22 lines
504 B
YAML
22 lines
504 B
YAML
version: '3.8'
|
|
services:
|
|
minio:
|
|
image: minio/minio:RELEASE.2024-10-08T09-56-18Z
|
|
command: server /data --console-address ":9001"
|
|
environment:
|
|
MINIO_ROOT_USER: exportci
|
|
MINIO_ROOT_PASSWORD: exportci123
|
|
ports:
|
|
- "9000:9000"
|
|
- "9001:9001"
|
|
volumes:
|
|
- minio-data:/data
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 5
|
|
volumes:
|
|
minio-data:
|
|
driver: local
|