22 lines
567 B
YAML
22 lines
567 B
YAML
services:
|
|
minio:
|
|
command: server /data --console-address ":9001"
|
|
container_name: minio
|
|
environment:
|
|
- MINIO_ROOT_USER="${MINIO_ROOT_USER:?}
|
|
- MINIO_ROOT_PASSWORD="${MINIO_ROOT_PASSWORD:?}
|
|
healthcheck:
|
|
interval: 30s
|
|
retries: 3
|
|
test:
|
|
- CMD
|
|
- curl
|
|
- -f
|
|
- http://localhost:9000/minio/health/live
|
|
timeout: 20s
|
|
image: minio/minio
|
|
ports:
|
|
- 9000:9000
|
|
- 9001:9001
|
|
restart: unless-stopped
|