Created
August 24, 2018 07:40
-
-
Save toripiyo/149896e9bdab23cda58eec6f8351d2e7 to your computer and use it in GitHub Desktop.
docker-compose.yml for minio
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.3' | |
services: | |
os: | |
image: "minio/minio" | |
ports: | |
- "9000:9000" | |
volumes: | |
- os:/data | |
command: server /data | |
environment: | |
MINIO_ACCESS_KEY: input_minio_access_key_here_as_you_like | |
MINIO_SECRET_KEY: input_minio_secret_key_here_as_you_like | |
volumes: | |
os: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment