Skip to content

Instantly share code, notes, and snippets.

@bitkill
Created December 29, 2021 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitkill/78ac550753eb10946ffaf772f26aef4a to your computer and use it in GitHub Desktop.
Save bitkill/78ac550753eb10946ffaf772f26aef4a to your computer and use it in GitHub Desktop.
[Local min.io] #min.io #local #s3
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