Created
December 29, 2021 13:02
-
-
Save bitkill/78ac550753eb10946ffaf772f26aef4a to your computer and use it in GitHub Desktop.
[Local min.io] #min.io #local #s3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version '3.7' | |
services: | |
minio: | |
image: quay.io/minio/minio:latest | |
command: server /data --console-address ":9001" | |
ports: | |
- "9000:9000" | |
- "9001:9001" | |
environment: | |
MINIO_ROOT_USER: minio | |
MINIO_ROOT_PASSWORD: minio123 | |
healthcheck: | |
test: [ "CMD", "curl", "-f", "http://localhost:9000/minio/health/live" ] | |
interval: 30s | |
timeout: 20s | |
retries: 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment