You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
434 B
19 lines
434 B
version: "3" |
|
|
|
services: |
|
minio: |
|
image: minio/minio |
|
command: server /data --console-address ":9001" |
|
ports: |
|
- "9000:9000" |
|
- "9001:9001" |
|
# environment: |
|
# MINIO_ROOT_USER: minioadmin |
|
# MINIO_ROOT_PASSWORD: minioadmin |
|
healthcheck: |
|
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"] |
|
interval: 30s |
|
timeout: 20s |
|
retries: 3 |
|
volumes: |
|
- ./data:/data
|
|
|