Skip to content

Instantly share code, notes, and snippets.

@toripiyo
Created August 24, 2018 07:40
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 toripiyo/149896e9bdab23cda58eec6f8351d2e7 to your computer and use it in GitHub Desktop.
Save toripiyo/149896e9bdab23cda58eec6f8351d2e7 to your computer and use it in GitHub Desktop.
docker-compose.yml for minio
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