Skip to content

Instantly share code, notes, and snippets.

@mamachanko
Last active October 20, 2019 11:18
Show Gist options
  • Save mamachanko/615cef758473b8df0afd460886bf4168 to your computer and use it in GitHub Desktop.
Save mamachanko/615cef758473b8df0afd460886bf4168 to your computer and use it in GitHub Desktop.
Minimal Minio docker-compose.yml
version: '3.7'
services:
minio:
image: minio/minio:RELEASE.2019-10-12T01-39-57Z
volumes:
- minio-data:/data
ports:
- "9000:9000"
environment:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: 9reatsecr3t
command: server /data
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
timeout: 20s
retries: 3
volumes:
minio-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment