Last active
October 20, 2019 11:18
-
-
Save mamachanko/615cef758473b8df0afd460886bf4168 to your computer and use it in GitHub Desktop.
Minimal Minio docker-compose.yml
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: 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